summaryrefslogtreecommitdiff
path: root/lib/stitch_plan/stitch_plan.py
diff options
context:
space:
mode:
authorKaalleen <reni@allenka.de>2023-07-22 06:46:50 +0200
committerKaalleen <reni@allenka.de>2023-07-22 06:46:50 +0200
commit15ee5c458ba5cf3abfe2162d8eb4e8e1d13c6f91 (patch)
tree6a6e4d612a657854c8e1a6c4f251da79e30c9df4 /lib/stitch_plan/stitch_plan.py
parent233340c0e72e96ba4c2b80fe0737c0a13884dcf7 (diff)
sort imports
Diffstat (limited to 'lib/stitch_plan/stitch_plan.py')
-rw-r--r--lib/stitch_plan/stitch_plan.py4
1 files changed, 2 insertions, 2 deletions
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