8000 PEP8 · matplotlib/matplotlib@6b2e116 · GitHub
[go: up one dir, main page]

Skip to content

Commit 6b2e116

Browse files
committed
PEP8
1 parent 936315c commit 6b2e116

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/matplotlib/tests/test_marker.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
from matplotlib import markers
33
from nose.tools import assert_raises
44

5+
56
def test_markers_valid():
67
marker_style = markers.MarkerStyle()
78
mrk_array = np.array([[-0.5, 0],
@@ -12,7 +13,7 @@ def test_markers_valid():
1213

1314
def test_markers_invalid():
1415
marker_style = markers.MarkerStyle()
15-
mrk_array = np.array([[-0.5, 0, 1, 2, 3]])
16+
mrk_array = np.array([[-0.5, 0, 1, 2, 3]])
1617
# Checking this does fail.
1718
with assert_raises(ValueError):
1819
marker_style.set_marker(mrk_array)

0 commit comments

Comments
 (0)
0