summaryrefslogtreecommitdiffstats
path: root/storperf
diff options
context:
space:
mode:
authorMark Beierl <mark.beierl@emc.com>2016-07-13 23:26:00 -0400
committerMark Beierl <mark.beierl@emc.com>2016-07-14 20:09:55 +0000
commitce3f927c2bc98eaf124e96f99cbcc33fbebabeed (patch)
treea59151955913ec2131e2f55fcca3b1cf974096ac /storperf
parent94550f3b427ec525771ac0d6a9d884e4e69f838b (diff)
Enforce Style Guidelines
Update to fail verify if pep8 compliance not met. Revert back to Coverage 4.1 to show code coverage report in Jenkins again Change-Id: Icb467451f101942255c7944ad796497609dcb07e Signed-off-by: Mark Beierl <mark.beierl@emc.com>
Diffstat (limited to 'storperf')
-rw-r--r--storperf/plot/barchart.py8
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