diff options
| author | Lex Neva <github.com@lexneva.name> | 2021-08-07 11:21:13 -0400 |
|---|---|---|
| committer | Lex Neva <github.com@lexneva.name> | 2021-08-07 11:21:13 -0400 |
| commit | 84cb4e2c333d331eb863714797a55589f41e51b2 (patch) | |
| tree | aaf46187dd21e719600875bf432349ad1ce31530 /lib/stitch_plan/stitch.py | |
| parent | 12ef0c84aa732623b210fdce1a7b8301aa435217 (diff) | |
move StitchGroup into lib.stitch_plan
Diffstat (limited to 'lib/stitch_plan/stitch.py')
| -rw-r--r-- | lib/stitch_plan/stitch.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/stitch_plan/stitch.py b/lib/stitch_plan/stitch.py index ae6fa480..85d71935 100644 --- a/lib/stitch_plan/stitch.py +++ b/lib/stitch_plan/stitch.py @@ -8,8 +8,7 @@ from ..utils.geometry import Point class Stitch(Point): def __init__(self, x, y=None, color=None, jump=False, stop=False, trim=False, color_change=False, tie_modus=0, no_ties=False): - self.x = x - self.y = y + Point.__init__(self, x, y) self.color = color self.jump = jump self.trim = trim |
