Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 2dd22ca

Browse files
committed
PEP8 : pep8 on test code
What is wrong with me?
1 parent b1abc0c commit 2dd22ca

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

lib/matplotlib/tests/test_axes.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3473,18 +3473,21 @@ def test_pathological_hexbin():
34733473
fig.savefig(out)
34743474
assert_equal(len(w), 0)
34753475

3476+
34763477
@cleanup
34773478
def test_color_None():
34783479
# issue 3855
34793480
fig, ax = plt.subplots()
3480-
ax.plot([1,2], [1,2], color=None)
3481+
ax.plot([1, 2], [1, 2], color=None)
34813482
plt.show()
34823483

3484+
34833485
@cleanup
34843486
def test_numerical_hist_label():
34853487
fig, ax = plt.subplots()
34863488
ax.hist([range(15)] * 5, label=range(5))
34873489

3490+
34883491
if __name__ == '__main__':
34893492
import nose
34903493
import sys

0 commit comments

Comments
 (0)