8000 PEP8 · kkoci/matplotlib@5cede2c · GitHub
[go: up one dir, main page]

Skip to content

Commit 5cede2c

Browse files
committed
PEP8
1 parent 40f201c commit 5cede2c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/matplotlib/tests/test_path.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,8 @@ def test_path_clipping():
5757
bbox = [0, 140, 640, 260]
5858
ax.set_xlim(bbox[0], bbox[0] + bbox[2])
5959
ax.set_ylim(bbox[1], bbox[1] + bbox[3])
60-
ax.add_patch(Polygon(xy, facecolor='none', edgecolor='red', closed=True))
60+
ax.add_patch(Polygon(
61+
xy, facecolor='none', edgecolor='red', closed=True))
6162

6263

6364
if __name__ == '__main__':

0 commit comments

Comments
 (0)
0