Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
blender-addons
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
blender
blender-addons
Commits
318851e1
Commit
318851e1
authored
6 years ago
by
Campbell Barton
Browse files
Options
Downloads
Patches
Plain Diff
Cleanup: use tuples for storing classes
parent
fc4f9d36
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
development_icon_get.py
+2
-2
2 additions, 2 deletions
development_icon_get.py
io_anim_bvh/__init__.py
+2
-2
2 additions, 2 deletions
io_anim_bvh/__init__.py
io_mesh_stl/__init__.py
+2
-2
2 additions, 2 deletions
io_mesh_stl/__init__.py
io_shape_mdd/__init__.py
+2
-2
2 additions, 2 deletions
io_shape_mdd/__init__.py
with
8 additions
and
8 deletions
development_icon_get.py
+
2
−
2
View file @
318851e1
...
...
@@ -487,14 +487,14 @@ class IV_OT_icons_show(bpy.types.Operator):
self
,
width
=
self
.
width
)
classes
=
[
classes
=
(
IV_PT_icons
,
IV_HT_icons
,
IV_OT_panel_menu_call
,
IV_OT_icon_select
,
IV_OT_icons_show
,
IV_Preferences
,
]
)
def
register
():
...
...
This diff is collapsed.
Click to expand it.
io_anim_bvh/__init__.py
+
2
−
2
View file @
318851e1
...
...
@@ -217,10 +217,10 @@ def menu_func_export(self, context):
self
.
layout
.
operator
(
ExportBVH
.
bl_idname
,
text
=
"
Motion Capture (.bvh)
"
)
classes
=
[
classes
=
(
ImportBVH
,
ExportBVH
]
)
def
register
():
for
cls
in
classes
:
...
...
This diff is collapsed.
Click to expand it.
io_mesh_stl/__init__.py
+
2
−
2
View file @
318851e1
...
...
@@ -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
:
...
...
This diff is collapsed.
Click to expand it.
io_shape_mdd/__init__.py
+
2
−
2
View file @
318851e1
...
...
@@ -164,10 +164,10 @@ def menu_func_export(self, context):
)
classes
=
[
classes
=
(
ImportMDD
,
ExportMDD
]
)
def
register
():
for
cls
in
classes
:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment