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/elements/fill.py | |
| parent | 12ef0c84aa732623b210fdce1a7b8301aa435217 (diff) | |
move StitchGroup into lib.stitch_plan
Diffstat (limited to 'lib/elements/fill.py')
| -rw-r--r-- | lib/elements/fill.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/elements/fill.py b/lib/elements/fill.py index 75a86ffd..2d2ae2ed 100644 --- a/lib/elements/fill.py +++ b/lib/elements/fill.py @@ -10,12 +10,13 @@ import re from shapely import geometry as shgeo from shapely.validation import explain_validity +from .element import EmbroideryElement, param +from .validation import ValidationError from ..i18n import _ +from ..stitch_plan import StitchGroup from ..stitches import legacy_fill from ..svg import PIXELS_PER_MM from ..utils import cache -from .element import EmbroideryElement, StitchGroup, param -from .validation import ValidationError class UnconnectedError(ValidationError): |
