summaryrefslogtreecommitdiff
path: root/lib/utils
diff options
context:
space:
mode:
Diffstat (limited to 'lib/utils')
-rw-r--r--lib/utils/settings.py2
-rw-r--r--lib/utils/smoothing.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/utils/settings.py b/lib/utils/settings.py
index b2220ef9..82d8938a 100644
--- a/lib/utils/settings.py
+++ b/lib/utils/settings.py
@@ -49,7 +49,7 @@ class GlobalSettings(MutableMapping):
# We set create=False here because this code is executed on module load
# and via imports also runs on generate-inx-files, which with the Nix
# package manager is executed with a non-writable home directory.
- user_dir = get_user_dir(create=False)
+ user_dir = get_user_dir(create=True)
self._settings_file = os.path.join(user_dir, "settings.json")
self._settings = {}
diff --git a/lib/utils/smoothing.py b/lib/utils/smoothing.py
index 1511b0a3..c451140c 100644
--- a/lib/utils/smoothing.py
+++ b/lib/utils/smoothing.py
@@ -44,7 +44,7 @@ def smooth_path(path, smoothness=1.0, iterations=5):
#
# Fortunately, we can convert the path to segments that are mostly the same
# length by using the running stitch algorithm.
- points = stitch_curve_evenly(points, smoothness * 5, smoothness * 2)
+ points, _ = stitch_curve_evenly(points, [smoothness * 5], smoothness * 2)
points = np.array(points)
for _ in range(iterations):
ll = points.repeat(2, axis=0)