summaryrefslogtreecommitdiff
path: root/lib/stitches
diff options
context:
space:
mode:
authorKaalleen <36401965+kaalleen@users.noreply.github.com>2023-02-27 16:05:52 +0100
committerGitHub <noreply@github.com>2023-02-27 16:05:52 +0100
commitec076315bb8b5f901670fee1c06db028242b21fd (patch)
tree17cd3413f48cad338d95452d2d0aac96aac44d01 /lib/stitches
parented4aa55a733986436853e2ee7ad22f757b09fcb1 (diff)
Various lock stitch options (#2006)
Co-authored-by: Lex Neva
Diffstat (limited to 'lib/stitches')
-rw-r--r--lib/stitches/fill.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/stitches/fill.py b/lib/stitches/fill.py
index 3bd7761d..2c5cdffc 100644
--- a/lib/stitches/fill.py
+++ b/lib/stitches/fill.py
@@ -86,7 +86,7 @@ def stitch_row(stitches, beg, end, angle, row_spacing, max_stitch_length, stagge
offset = (first_stitch - beg).length()
while offset < segment_length:
- stitches.append(Stitch(beg + offset * row_direction, tags=('fill_row')))
+ stitches.append(Stitch(beg + offset * row_direction, tags=('fill_row',)))
offset += max_stitch_length
if (end - stitches[-1]).length() > 0.1 * PIXELS_PER_MM and not skip_last: