diff options
| author | capellancitizen <thecapellancitizen@gmail.com> | 2025-03-09 21:21:48 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-09 21:21:48 -0400 |
| commit | 99509df8d8abf1e7b701a4a09cf170a362f6d878 (patch) | |
| tree | a461549502fa9f37dc287789b6c7db81dfcd5368 /lib/output.py | |
| parent | 0d2fc24f25f87562f0755b53dad6204efad1330d (diff) | |
Mypy type correctness (#3199)
Diffstat (limited to 'lib/output.py')
| -rw-r--r-- | lib/output.py | 5 |
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") |
