diff options
| author | Lex Neva <github.com@lexneva.name> | 2018-09-16 13:09:00 -0400 |
|---|---|---|
| committer | Lex Neva <github.com@lexneva.name> | 2018-09-16 13:09:00 -0400 |
| commit | fa125ff27ef2682f78faf307b3de29456c263ad3 (patch) | |
| tree | d54584d772f08f1e1f5c4361cb31e4cb59d1b4c6 /lib/stitch_plan/ties.py | |
| parent | 9b619de22807b144373a6166621a7c3002929b2b (diff) | |
remove obselete 'fake color change' code
Diffstat (limited to 'lib/stitch_plan/ties.py')
| -rw-r--r-- | lib/stitch_plan/ties.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/stitch_plan/ties.py b/lib/stitch_plan/ties.py index c0d2f8de..1d759c0e 100644 --- a/lib/stitch_plan/ties.py +++ b/lib/stitch_plan/ties.py @@ -47,10 +47,7 @@ def add_ties(stitch_plan): for i, stitch in enumerate(color_block.stitches): is_special = stitch.trim or stitch.jump or stitch.color_change or stitch.stop - # see stop.py for an explanation of the fake color change - is_fake = stitch.fake_color_change - - if is_special and not is_fake and not need_tie_in: + if is_special and not need_tie_in: add_tie_off(new_stitches) new_stitches.append(stitch) need_tie_in = True |
