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 /development_icon_get.py
parentfc4f9d369cc5d5b4ba743ee973f4d0cd999a1f26 (diff)
Cleanup: use tuples for storing classes
Diffstat (limited to 'development_icon_get.py')
-rw-r--r--development_icon_get.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/development_icon_get.py b/development_icon_get.py
index cbeeea9a..ea175539 100644
--- a/development_icon_get.py
+++ b/development_icon_get.py
@@ -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():