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:
Diffstat (limited to 'io_mesh_stl')
-rw-r--r--io_mesh_stl/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/io_mesh_stl/__init__.py b/io_mesh_stl/__init__.py
index 934cdbb4..6859627c 100644
--- a/io_mesh_stl/__init__.py
+++ b/io_mesh_stl/__init__.py
@@ -254,10 +254,10 @@ def menu_export(self, context):
self.layout.operator(ExportSTL.bl_idname, text="Stl (.stl)")
-classes = [
+classes = (
ImportSTL,
ExportSTL
-]
+)
def register():
for cls in classes: