summaryrefslogtreecommitdiff
path: root/lib/extensions/__init__.py
diff options
context:
space:
mode:
authorKaalleen <36401965+kaalleen@users.noreply.github.com>2019-08-06 04:42:48 +0200
committerLex Neva <lexelby@users.noreply.github.com>2019-08-05 22:42:48 -0400
commit077f7ea72ba38790bf030d3181c44787fef953b6 (patch)
tree1cd8bf2896d587735c98eee06589f4c88bee3aa9 /lib/extensions/__init__.py
parentcdb8d1d0d4a6dba9a1eb146167b1aef01de0e9d6 (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/extensions/__init__.py')
-rw-r--r--lib/extensions/__init__.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/extensions/__init__.py b/lib/extensions/__init__.py
index 741973ab..d6d0e279 100644
--- a/lib/extensions/__init__.py
+++ b/lib/extensions/__init__.py
@@ -2,6 +2,7 @@ from auto_satin import AutoSatin
from convert_to_satin import ConvertToSatin
from cut_satin import CutSatin
from embroider import Embroider
+from lib.extensions.troubleshoot import Troubleshoot
from flip import Flip
from global_commands import GlobalCommands
from input import Input
@@ -31,4 +32,5 @@ __all__ = extensions = [Embroider,
ConvertToSatin,
CutSatin,
AutoSatin,
- Lettering]
+ Lettering,
+ Troubleshoot]