8000 PEP8 fixes · matplotlib/matplotlib@4791c9a · GitHub
[go: up one dir, main page]

Skip to content

Commit 4791c9a

Browse files
committed
PEP8 fixes
1 parent f6efb57 commit 4791c9a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lib/matplotlib/tests/test_axes.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1072,14 +1072,16 @@ def test_hist_stacked_step():
10721072
ax = fig.add_subplot(111)
10731073
ax.hist( (d1, d2), histtype="step", stacked=True)
10741074

1075+
10751076
@image_comparison(baseline_images=['hist_stacked_normed'])
10761077
def test_hist_stacked_normed():
10771078
# make some data
10781079
d1 = np.linspace(1, 3, 20)
10791080
d2 = np.linspace(0, 10, 50)
10801081
fig = plt.figure()
10811082
ax = fig.add_subplot(111)
1082-
ax.hist( (d1, d2), stacked=True, normed=True)
1083+
ax.hist((d1, d2), stacked=True, normed=True)
1084+
10831085

10841086
@image_comparison(baseline_images=['hist_stacked_bar'])
10851087
def test_hist_stacked_bar():

0 commit comments

Comments
 (0)
0