diff options
| author | Lex Neva <github.com@lexneva.name> | 2018-08-21 21:43:09 -0400 |
|---|---|---|
| committer | Lex Neva <github.com@lexneva.name> | 2018-08-21 21:43:09 -0400 |
| commit | 908f2cd7727e939b87e3f57c1d3a189705de4c94 (patch) | |
| tree | d0a868121190fb0ae4cae2b9ee7ae199d5230ef0 /lib/stitches/fill.py | |
| parent | 94f391ab4262b5e1c8dace0263467a0ec1f17058 (diff) | |
pyflakes fixes
Diffstat (limited to 'lib/stitches/fill.py')
| -rw-r--r-- | lib/stitches/fill.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/stitches/fill.py b/lib/stitches/fill.py index b6b97e1b..af0a8403 100644 --- a/lib/stitches/fill.py +++ b/lib/stitches/fill.py @@ -1,6 +1,5 @@ import shapely import math -import sys from ..svg import PIXELS_PER_MM from ..utils import cache, Point as InkstitchPoint @@ -167,9 +166,7 @@ def intersect_region_with_grating(shape, angle, row_spacing, end_row_spacing=Non def section_to_stitches(group_of_segments, angle, row_spacing, max_stitch_length, staggers): stitches = [] - first_segment = True swap = False - last_end = None for segment in group_of_segments: (beg, end) = segment @@ -240,7 +237,7 @@ def pull_runs(rows, shape, row_spacing): # print >> sys.stderr, len(run) runs.append(run) - rows = [row for row in rows if len(row) > 0] + rows = [r for r in rows if len(r) > 0] count += 1 |
