Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2018-10-03 02:18:14 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-10-03 02:18:14 +0300
commit318851e12849f880e486fdecb8c96956305fbcc0 (patch)
tree867b8e64d6005cba17d4a166055437c32e2087e4 /io_shape_mdd
parentfc4f9d369cc5d5b4ba743ee973f4d0cd999a1f26 (diff)
Cleanup: use tuples for storing classes
Diffstat (limited to 'io_shape_mdd')
-rw-r--r--io_shape_mdd/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/io_shape_mdd/__init__.py b/io_shape_mdd/__init__.py
index 169e0c17..b6f0e734 100644
--- a/io_shape_mdd/__init__.py
+++ b/io_shape_mdd/__init__.py
@@ -164,10 +164,10 @@ def menu_func_export(self, context):
)
-classes = [
+classes = (
ImportMDD,
ExportMDD
-]
+)
def register():
for cls in classes: