summaryrefslogtreecommitdiff
path: root/lib/utils
diff options
context:
space:
mode:
authorKaalleen <36401965+kaalleen@users.noreply.github.com>2024-05-11 08:14:40 +0200
committerGitHub <noreply@github.com>2024-05-11 08:14:40 +0200
commitbf42ef00ca315e78c0069c01d97517e3786f2135 (patch)
tree100619af8d29613a47fb0cb08414afdc270cf6d7 /lib/utils
parent19b59aa2f4e94d7ac32e37aaa74aed7f99340859 (diff)
Update inkex (#2892)
* fix currentColor * fix pip inkex import * fix color block extension
Diffstat (limited to 'lib/utils')
-rw-r--r--lib/utils/smoothing.py2
-rw-r--r--lib/utils/threading.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/utils/smoothing.py b/lib/utils/smoothing.py
index 49771b6c..0300f6f1 100644
--- a/lib/utils/smoothing.py
+++ b/lib/utils/smoothing.py
@@ -33,7 +33,7 @@ def smooth_path(path, smoothness=1.0):
Returns:
A list of Points.
"""
- from ..debug import debug
+ from ..debug.debug import debug
if smoothness == 0:
# s of exactly zero seems to indicate a default level of smoothing
diff --git a/lib/utils/threading.py b/lib/utils/threading.py
index f774dcbe..2a95e857 100644
--- a/lib/utils/threading.py
+++ b/lib/utils/threading.py
@@ -1,7 +1,7 @@
import threading
from ..exceptions import InkstitchException
-from ..debug import debug
+from ..debug.debug import debug
class ExitThread(InkstitchException):