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:16:50 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-10-03 02:17:09 +0300
commite991b71c5e506065d7cf76283baceb674380e33d (patch)
treeb48c2e9bb421af6402ad10411ae1c9cba8aa7238 /mesh_tiny_cad
parentf975292b1ec103826fe244dfdb851fed0428b624 (diff)
Cleanup: use tuples for storing classes
Diffstat (limited to 'mesh_tiny_cad')
-rw-r--r--mesh_tiny_cad/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/mesh_tiny_cad/__init__.py b/mesh_tiny_cad/__init__.py
index 4a9a62f0..d614ddcd 100644
--- a/mesh_tiny_cad/__init__.py
+++ b/mesh_tiny_cad/__init__.py
@@ -59,7 +59,7 @@ def menu_func(self, context):
self.layout.menu("VIEW3D_MT_edit_mesh_tinycad")
self.layout.separator()
-classes = [
+classes = (
TinyCADProperties, VIEW3D_MT_edit_mesh_tinycad,
VTX.TCAutoVTX,
XALL.TCIntersectAllEdges,
@@ -67,7 +67,7 @@ classes = [
E2F.TCEdgeToFace,
CCEN.TCCallBackCCEN, CCEN.TCCircleCenter,
BIX.TCLineOnBisection
-]
+)
def register():
register_icons()