diff options
| author | capellancitizen <thecapellancitizen@gmail.com> | 2024-03-28 17:21:42 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-28 22:21:42 +0100 |
| commit | 2bbebe56fdcf3fb351df1c636d349946e548e505 (patch) | |
| tree | f2eddba82b6f5a1490d1d2ca43e6c8ee91bfd3a4 /lib/elements/element.py | |
| parent | 51f2746b90ecfc56dad50d620a86ab2aa00b68b0 (diff) | |
Fixed clones of group elements not appearing. (#2766)
Diffstat (limited to 'lib/elements/element.py')
| -rw-r--r-- | lib/elements/element.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/elements/element.py b/lib/elements/element.py index 6c2fa15a..071f8a90 100644 --- a/lib/elements/element.py +++ b/lib/elements/element.py @@ -8,7 +8,7 @@ from copy import deepcopy import inkex import numpy as np -from inkex import bezier +from inkex import bezier, BaseElement from ..commands import find_commands from ..debug import debug @@ -58,7 +58,7 @@ def param(*args, **kwargs): class EmbroideryElement(object): - def __init__(self, node): + def __init__(self, node: BaseElement): self.node = node @property |
