summaryrefslogtreecommitdiff
path: root/lib/inx/extensions.py
diff options
context:
space:
mode:
authorKaalleen <reni@allenka.de>2021-06-28 20:05:50 +0200
committerKaalleen <reni@allenka.de>2021-06-28 20:05:50 +0200
commitecacb9829e9c2b7050486707211f9d176aafdf75 (patch)
treef6f30f9707a9c3f603ce896b0b95dbe5c4b13dc1 /lib/inx/extensions.py
parent2f54ff2a436f2774bfdc730b6e95c43f18ed81ac (diff)
pattern markers
Diffstat (limited to 'lib/inx/extensions.py')
-rwxr-xr-xlib/inx/extensions.py9
1 files changed, 2 insertions, 7 deletions
diff --git a/lib/inx/extensions.py b/lib/inx/extensions.py
index 8ca0addc..9a197c5d 100755
--- a/lib/inx/extensions.py
+++ b/lib/inx/extensions.py
@@ -5,8 +5,8 @@
import pyembroidery
-from ..commands import (COMMANDS, GLOBAL_COMMANDS, GROUP_COMMANDS,
- LAYER_COMMANDS, OBJECT_COMMANDS)
+from ..commands import (COMMANDS, GLOBAL_COMMANDS, LAYER_COMMANDS,
+ OBJECT_COMMANDS)
from ..extensions import Input, Output, extensions
from ..threads import ThreadCatalog
from .outputs import pyembroidery_output_formats
@@ -24,10 +24,6 @@ def global_commands():
return [(command, COMMANDS[command]) for command in GLOBAL_COMMANDS]
-def group_commands():
- return [(command, COMMANDS[command]) for command in GROUP_COMMANDS]
-
-
def object_commands():
return [(command, COMMANDS[command]) for command in OBJECT_COMMANDS]
@@ -55,7 +51,6 @@ def generate_extension_inx_files():
write_inx_file(name, template.render(formats=pyembroidery_output_formats(),
debug_formats=pyembroidery_debug_formats(),
threadcatalog=threadcatalog(),
- group_commands=group_commands(),
layer_commands=layer_commands(),
object_commands=object_commands(),
global_commands=global_commands()))