summaryrefslogtreecommitdiff
path: root/lib/elements/fill.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/elements/fill.py')
-rw-r--r--lib/elements/fill.py9
1 files changed, 6 insertions, 3 deletions
diff --git a/lib/elements/fill.py b/lib/elements/fill.py
index a74a897d..52a42260 100644
--- a/lib/elements/fill.py
+++ b/lib/elements/fill.py
@@ -1,10 +1,13 @@
-from .. import _, PIXELS_PER_MM
-from .element import param, EmbroideryElement, Patch
-from ..utils import cache
from shapely import geometry as shgeo
import math
+
+from .element import param, EmbroideryElement, Patch
+from ..i18n import _
+from ..svg import PIXELS_PER_MM
+from ..utils import cache
from ..stitches import running_stitch, auto_fill, legacy_fill
+
class Fill(EmbroideryElement):
element_name = _("Fill")