Skip to content

Commit b7ff5d4

Browse files
committed
PEP8 compliance fix
1 parent b448745 commit b7ff5d4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: lib/matplotlib/axes.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -8232,8 +8232,8 @@ def hist(self, x, bins=10, range=None, normed=False, weights=None,
82328232
ndata = np.array(n)
82338233
minimum = (np.min(ndata[ndata>0])) / logbase
82348234
else:
8235-
# For non-normed data, set the min to log base, again so that
8236-
# there is 1 full tick-label unit for the lowest bin
8235+
# For non-normed data, set the min to log base, again so
8236+
# that there is 1 full tick-label unit for the lowest bin
82378237
minimum = 1.0 / logbase
82388238

82398239
y[0], y[-1] = minimum, minimum

0 commit comments

Comments
 (0)