Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 73d0070

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

File tree

Expand file treeCollapse file tree

1 file changed

+2
-1
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+2
-1
lines changed

‎lib/matplotlib/axes/_axes.py

Copy file name to clipboardExpand all lines: lib/matplotlib/axes/_axes.py
+2-1Lines changed: 2 additions & 1 deletion
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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.