summaryrefslogtreecommitdiff
path: root/lib/stitches
diff options
context:
space:
mode:
Diffstat (limited to 'lib/stitches')
-rw-r--r--lib/stitches/auto_fill.py2
-rw-r--r--lib/stitches/guided_fill.py2
-rw-r--r--lib/stitches/meander_fill.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/lib/stitches/auto_fill.py b/lib/stitches/auto_fill.py
index 159a869b..85543cea 100644
--- a/lib/stitches/auto_fill.py
+++ b/lib/stitches/auto_fill.py
@@ -16,7 +16,7 @@ from shapely.ops import snap
from shapely.strtree import STRtree
-from ..debug import debug
+from ..debug.debug import debug
from ..stitch_plan import Stitch
from ..svg import PIXELS_PER_MM
from ..utils import cache
diff --git a/lib/stitches/guided_fill.py b/lib/stitches/guided_fill.py
index 1b564bcb..f170f024 100644
--- a/lib/stitches/guided_fill.py
+++ b/lib/stitches/guided_fill.py
@@ -10,7 +10,7 @@ from shapely.ops import linemerge, nearest_points, unary_union
from lib.utils import prng
-from ..debug import debug
+from ..debug.debug import debug
from ..stitch_plan import Stitch
from ..utils.geometry import Point as InkstitchPoint
from ..utils.geometry import (ensure_geometry_collection,
diff --git a/lib/stitches/meander_fill.py b/lib/stitches/meander_fill.py
index 94e38e1f..77a899c9 100644
--- a/lib/stitches/meander_fill.py
+++ b/lib/stitches/meander_fill.py
@@ -5,7 +5,7 @@ from shapely.geometry import LineString, MultiPoint, Point
from shapely.ops import nearest_points
from .. import tiles
-from ..debug import debug
+from ..debug.debug import debug
from ..i18n import _
from ..utils.clamp_path import clamp_path_to_polygon
from ..utils.geometry import Point as InkStitchPoint