diff options
| author | Lex Neva <lexelby@users.noreply.github.com> | 2018-08-24 15:34:08 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-08-24 15:34:08 -0400 |
| commit | b3bb975401fe4971170239eea9b928ee13161398 (patch) | |
| tree | d50e49a5808101bc5270a6eb43ed5fe69f197e67 /lib/extensions/__init__.py | |
| parent | 27c8bcc370594d93e7d826708e4761af0da503d7 (diff) | |
| parent | 2fd6cb4a71daa55c93a56ee4387117a10b762c6b (diff) | |
Merge pull request #292 from inkstitch/lexelby/pes-fixes
pes fixes
Diffstat (limited to 'lib/extensions/__init__.py')
| -rw-r--r-- | lib/extensions/__init__.py | 21 |
1 files changed, 12 insertions, 9 deletions
diff --git a/lib/extensions/__init__.py b/lib/extensions/__init__.py index 1606795c..cf0313b2 100644 --- a/lib/extensions/__init__.py +++ b/lib/extensions/__init__.py @@ -11,12 +11,15 @@ from object_commands import ObjectCommands from layer_commands import LayerCommands from convert_to_satin import ConvertToSatin -from base import InkstitchExtension -import inspect - -extensions = [] -for item in locals().values(): - if inspect.isclass(item) and \ - issubclass(item, InkstitchExtension) and \ - item is not InkstitchExtension: - extensions.append(item) +__all__ = extensions = [Embroider, + Install, + Params, + Print, + Simulate, + Input, + Output, + Zip, + Flip, + ObjectCommands, + LayerCommands, + ConvertToSatin] |
