summaryrefslogtreecommitdiff
path: root/lib/stitches
diff options
context:
space:
mode:
authorLex Neva <github.com@lexneva.name>2018-12-13 20:10:50 -0500
committerLex Neva <github.com@lexneva.name>2018-12-13 20:10:50 -0500
commit8f3c922011a5c39a6154863160ea8354a502ed42 (patch)
treebcc910a804f04293345a8324ad08fb06441933c8 /lib/stitches
parent9ae97154d689b188c796e5d11820e026ed1f9326 (diff)
fix style
Diffstat (limited to 'lib/stitches')
-rw-r--r--lib/stitches/auto_fill.py11
1 files changed, 10 insertions, 1 deletions
diff --git a/lib/stitches/auto_fill.py b/lib/stitches/auto_fill.py
index 0b5782e5..4a0fbed7 100644
--- a/lib/stitches/auto_fill.py
+++ b/lib/stitches/auto_fill.py
@@ -40,7 +40,16 @@ class PathEdge(object):
return self.key == self.SEGMENT_KEY
-def auto_fill(shape, angle, row_spacing, end_row_spacing, max_stitch_length, running_stitch_length, staggers, skip_last, starting_point, ending_point=None):
+def auto_fill(shape,
+ angle,
+ row_spacing,
+ end_row_spacing,
+ max_stitch_length,
+ running_stitch_length,
+ staggers,
+ skip_last,
+ starting_point,
+ ending_point=None):
stitches = []
rows_of_segments = intersect_region_with_grating(shape, angle, row_spacing, end_row_spacing)