From fd3766eb198bc2e6761f04a7e34f61fd7b5ccbad Mon Sep 17 00:00:00 2001 From: Vincent Legoll Date: Fri, 20 Mar 2020 22:44:53 +0100 Subject: [PATCH] btt_plot.py: Fix pylint: wrong-import-order C0411: standard import "import getopt, glob, os, sys" should be placed before "import six" Signed-off-by: Vincent Legoll Signed-off-by: Jens Axboe --- btt/btt_plot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/btt/btt_plot.py b/btt/btt_plot.py index 9c6f207..b135206 100755 --- a/btt/btt_plot.py +++ b/btt/btt_plot.py @@ -57,6 +57,7 @@ Arguments: from __future__ import absolute_import from __future__ import print_function +import getopt, glob, os, sys import six from six.moves import range __author__ = 'Alan D. Brunelle ' @@ -65,7 +66,6 @@ __author__ = 'Alan D. Brunelle ' import matplotlib matplotlib.use('Agg') -import getopt, glob, os, sys import matplotlib.pyplot as plt plot_size = [10.9, 8.4] # inches... -- 2.25.1