summaryrefslogtreecommitdiff
path: root/lib/output.py
diff options
context:
space:
mode:
authorcapellancitizen <thecapellancitizen@gmail.com>2025-03-09 21:21:48 -0400
committerGitHub <noreply@github.com>2025-03-09 21:21:48 -0400
commit99509df8d8abf1e7b701a4a09cf170a362f6d878 (patch)
treea461549502fa9f37dc287789b6c7db81dfcd5368 /lib/output.py
parent0d2fc24f25f87562f0755b53dad6204efad1330d (diff)
Mypy type correctness (#3199)
Diffstat (limited to 'lib/output.py')
-rw-r--r--lib/output.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/output.py b/lib/output.py
index 4559ca2b..a16b4018 100644
--- a/lib/output.py
+++ b/lib/output.py
@@ -32,11 +32,6 @@ def get_command(stitch):
return pyembroidery.NEEDLE_AT
-def _string_to_floats(string):
- floats = string.split(',')
- return [float(num) for num in floats]
-
-
def get_origin(svg, bounding_box):
(minx, miny, maxx, maxy) = bounding_box
origin_command = global_command(svg, "origin")