diff options
| author | Kaalleen <36401965+kaalleen@users.noreply.github.com> | 2019-08-06 04:42:48 +0200 |
|---|---|---|
| committer | Lex Neva <lexelby@users.noreply.github.com> | 2019-08-05 22:42:48 -0400 |
| commit | 077f7ea72ba38790bf030d3181c44787fef953b6 (patch) | |
| tree | 1cd8bf2896d587735c98eee06589f4c88bee3aa9 /lib/elements/stroke.py | |
| parent | cdb8d1d0d4a6dba9a1eb146167b1aef01de0e9d6 (diff) | |
add Troubleshoot extension (#465)
adds an extension to help you understand what's wrong with an object and how to fix it, e.g. "invalid" fill shapes
Diffstat (limited to 'lib/elements/stroke.py')
| -rw-r--r-- | lib/elements/stroke.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/elements/stroke.py b/lib/elements/stroke.py index e0a0aacc..4828bf65 100644 --- a/lib/elements/stroke.py +++ b/lib/elements/stroke.py @@ -3,11 +3,10 @@ import sys import shapely.geometry from ..i18n import _ -from ..stitches import running_stitch, bean_stitch +from ..stitches import bean_stitch, running_stitch from ..svg import parse_length_with_units -from ..utils import cache, Point -from .element import param, EmbroideryElement, Patch - +from ..utils import Point, cache +from .element import EmbroideryElement, Patch, param warned_about_legacy_running_stitch = False |
