Skip to content

Commit 73d0070

Browse files
committed
Merge pull request matplotlib#2626 from tacaswell/minor_pep8
minor pep8 to fix failing master builds.
2 parents 6a1b88c + efad0ae commit 73d0070

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/matplotlib/axes/_axes.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -5396,7 +5396,8 @@ def hist(self, x, bins=10, range=None, normed=False, weights=None,
53965396
# top of the previous polygon becomes the bottom
53975397
y[2*len(bins)-1:] = y[1:2*len(bins)-1][::-1]
53985398
# set the top of this polygon
5399-
y[1:2*len(bins)-1:2], y[2:2*len(bins):2] = m + bottom, m + bottom
5399+
y[1:2*len(bins)-1:2], y[2:2*len(bins):2] = (m + bottom,
5400+
m + bottom)
54005401
if log:
54015402
y[y < minimum] = minimum
54025403
if orientation == 'horizontal':

0 commit comments

Comments
 (0)