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

Skip to content

Commit d02b01d

Browse files
committed
PEP8
1 parent f60aa88 commit d02b01d

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

lib/matplotlib/tests/test_path.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,8 @@ def test_path_to_polygons():
156156
p = Path(data)
157157

158158
assert_array_equal(p.to_polygons(width=40, height=40), [])
159-
assert_array_equal(p.to_polygons(width=40, height=40, closed_only=False), [data])
159+
assert_array_equal(p.to_polygons(width=40, height=40, closed_only=False),
160+
[data])
160161
assert_array_equal(p.to_polygons(), [])
161162
assert_array_equal(p.to_polygons(closed_only=False), [data])
162163

@@ -165,7 +166,8 @@ def test_path_to_polygons():
165166
p = Path(data)
166167

167168
assert_array_equal(p.to_polygons(width=40, height=40), [closed_data])
168-
assert_array_equal(p.to_polygons(width=40, height=40, closed_only=False), [data])
169+
assert_array_equal(p.to_polygons(width=40, height=40, closed_only=False),
170+
[data])
169171
assert_array_equal(p.to_polygons(), [closed_data])
170172
assert_array_equal(p.to_polygons(closed_only=False), [data])
171173

0 commit comments

Comments
 (0)