diff options
| author | Kaalleen <36401965+kaalleen@users.noreply.github.com> | 2024-12-27 18:10:39 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-12-27 18:10:39 +0100 |
| commit | 7ba51c0c965288357fa16f4f5e788982b0cce1cb (patch) | |
| tree | 6eae11d8c026a76d71e2264d88ede17c17dcb088 /lib/elements/stroke.py | |
| parent | 870fff344fe727886d34d2eda421ec49666ffbe0 (diff) | |
various fixes (#3372)
Diffstat (limited to 'lib/elements/stroke.py')
| -rw-r--r-- | lib/elements/stroke.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/elements/stroke.py b/lib/elements/stroke.py index 5c6a0b08..fadaa93f 100644 --- a/lib/elements/stroke.py +++ b/lib/elements/stroke.py @@ -486,7 +486,7 @@ class Stroke(EmbroideryElement): @property @cache def shape(self): - return ensure_multi_line_string(self.as_multi_line_string().convex_hull) + return self.as_multi_line_string().convex_hull @cache def as_multi_line_string(self): |
