diff options
Diffstat (limited to 'storperf/plot/barchart.py')
-rw-r--r-- | storperf/plot/barchart.py | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/storperf/plot/barchart.py b/storperf/plot/barchart.py index 6fcfd8d..f82f3b8 100644 --- a/storperf/plot/barchart.py +++ b/storperf/plot/barchart.py @@ -11,9 +11,9 @@ import cStringIO import matplotlib as mpl mpl.use('Agg') -import matplotlib.pyplot as pyplot -from mpl_toolkits.mplot3d import Axes3D -import numpy as np +import matplotlib.pyplot as pyplot # noqa: ignore E402 +from mpl_toolkits.mplot3d import Axes3D # noqa: ignore E402, F401 +import numpy as np # noqa: ignore E402 class Barchart(object): @@ -25,8 +25,6 @@ class Barchart(object): fig = pyplot.figure() - #ax = Axes3D(fig) - data = np.array(latencies) lx = len(data[0]) # Work out matrix dimensions |