Skip to content

Commit 9e6cf4f

Browse files
committed
STY: fix line length >79
1 parent b52a8b1 commit 9e6cf4f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/patches.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2316,7 +2316,7 @@ def transmute(self, x0, y0, width, height, mutation_size):
23162316
saw_vertices = np.concatenate([np.array(saw_vertices),
23172317
[saw_vertices[0]]], axis=0)
23182318
codes = ([Path.MOVETO] +
2319-
[Path.CURVE3, Path.CURVE3] * ((len(saw_vertices)-1) // 2) +
2319+
[Path.CURVE3, Path.CURVE3] * ((len(saw_vertices)-1)//2) +
23202320
[Path.CLOSEPOLY])
23212321
return Path(saw_vertices, codes)
23222322

0 commit comments

Comments
 (0)