[Bf-extensions-cvs] [d83880c3] master: Bone Selection Sets: @classmethod should have cls, not self

Sybren A. Stüvel noreply at git.blender.org
Thu Feb 8 11:02:47 CET 2018


Commit: d83880c35bf15d5218d70222585fad87a377b8f2
Author: Sybren A. Stüvel
Date:   Wed Feb 7 12:59:15 2018 +0100
Branches: master
https://developer.blender.org/rBAd83880c35bf15d5218d70222585fad87a377b8f2

Bone Selection Sets: @classmethod should have cls, not self

The first paramter of a @classmethod should be 'cls'.

===================================================================

M	bone_selection_sets.py

===================================================================

diff --git a/bone_selection_sets.py b/bone_selection_sets.py
index 46aa7f25..22cadd50 100644
--- a/bone_selection_sets.py
+++ b/bone_selection_sets.py
@@ -142,7 +142,7 @@ class POSE_MT_create_new_selection_set(Menu):
 
 class PluginOperator(Operator):
     @classmethod
-    def poll(self, context):
+    def poll(cls, context):
         return (context.object and
                 context.object.type == 'ARMATURE' and
                 context.mode == 'POSE')
@@ -150,7 +150,7 @@ class PluginOperator(Operator):
 
 class NeedSelSetPluginOperator(PluginOperator):
     @classmethod
-    def poll(self, context):
+    def poll(cls, context):
         if super().poll(context):
             arm = context.object
             return (arm.active_selection_set < len(arm.selection_sets) and
@@ -206,7 +206,7 @@ class POSE_OT_selection_set_move(NeedSelSetPluginOperator):
     )
 
     @classmethod
-    def poll(self, context):
+    def poll(cls, context):
         if super().poll(context):
             arm = context.object
             return len(arm.selection_sets) > 1



More information about the Bf-extensions-cvs mailing list