summaryrefslogtreecommitdiff
path: root/lib/stitch_plan
diff options
context:
space:
mode:
Diffstat (limited to 'lib/stitch_plan')
-rw-r--r--lib/stitch_plan/color_block.py4
-rw-r--r--lib/stitch_plan/stitch_plan.py4
2 files changed, 4 insertions, 4 deletions
diff --git a/lib/stitch_plan/color_block.py b/lib/stitch_plan/color_block.py
index a888dc80..fdef5eb8 100644
--- a/lib/stitch_plan/color_block.py
+++ b/lib/stitch_plan/color_block.py
@@ -5,10 +5,10 @@
from typing import List
-from .stitch import Stitch
+from ..svg import PIXELS_PER_MM
from ..threads import ThreadColor
from ..utils.geometry import Point
-from ..svg import PIXELS_PER_MM
+from .stitch import Stitch
class ColorBlock(object):
diff --git a/lib/stitch_plan/stitch_plan.py b/lib/stitch_plan/stitch_plan.py
index b9ce902a..caea9c09 100644
--- a/lib/stitch_plan/stitch_plan.py
+++ b/lib/stitch_plan/stitch_plan.py
@@ -10,9 +10,9 @@ from inkex import errormsg
from ..i18n import _
from ..svg import PIXELS_PER_MM
-from .color_block import ColorBlock
-from ..utils.threading import check_stop_flag
from ..utils.geometry import Point
+from ..utils.threading import check_stop_flag
+from .color_block import ColorBlock
def stitch_groups_to_stitch_plan(stitch_groups, collapse_len=None, min_stitch_len=0.1, disable_ties=False): # noqa: C901