summaryrefslogtreecommitdiff
path: root/lib/elements/utils.py
diff options
context:
space:
mode:
authorKaalleen <reni@allenka.de>2021-06-27 22:47:43 +0200
committerKaalleen <reni@allenka.de>2021-06-27 22:47:43 +0200
commit2f54ff2a436f2774bfdc730b6e95c43f18ed81ac (patch)
tree638565e7ba94a12afcdafb0ab896246c4860c751 /lib/elements/utils.py
parentc602c4c517cab40dfc2dc7dbc5c29c037cccafae (diff)
group command extension
Diffstat (limited to 'lib/elements/utils.py')
-rw-r--r--lib/elements/utils.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/elements/utils.py b/lib/elements/utils.py
index cbac3d40..78dace6a 100644
--- a/lib/elements/utils.py
+++ b/lib/elements/utils.py
@@ -3,7 +3,7 @@
# Copyright (c) 2010 Authors
# Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details.
-from ..commands import is_command
+from ..commands import group_commands, is_command
from ..svg.tags import (EMBROIDERABLE_TAGS, INKSTITCH_ATTRIBS, SVG_IMAGE_TAG,
SVG_PATH_TAG, SVG_POLYLINE_TAG, SVG_TEXT_TAG)
from .auto_fill import AutoFill
@@ -17,7 +17,6 @@ from .polyline import Polyline
from .satin_column import SatinColumn
from .stroke import Stroke
from .text import TextObject
-from ..commands import group_commands
def node_to_elements(node): # noqa: C901