Cleanup: use 'cls' for class methods first argument

This commit is contained in:
Campbell Barton 2021-08-09 15:03:32 +10:00
parent eb165f574b
commit d3a699925d
3 changed files with 6 additions and 6 deletions

View File

@ -1355,7 +1355,7 @@ class I18n:
print(prefix.join(lines))
@classmethod
def check_py_module_has_translations(clss, src, settings=settings):
def check_py_module_has_translations(cls, src, settings=settings):
"""
Check whether a given src (a py module, either a directory or a py file) has some i18n translation data,
and returns a tuple (src_file, translations_tuple) if yes, else (None, None).
@ -1367,11 +1367,11 @@ class I18n:
if not fname.endswith(".py"):
continue
path = os.path.join(root, fname)
_1, txt, _2, has_trans = clss._parser_check_file(path)
_1, txt, _2, has_trans = cls._parser_check_file(path)
if has_trans:
txts.append((path, txt))
elif src.endswith(".py") and os.path.isfile(src):
_1, txt, _2, has_trans = clss._parser_check_file(src)
_1, txt, _2, has_trans = cls._parser_check_file(src)
if has_trans:
txts.append((src, txt))
for path, txt in txts:

View File

@ -761,9 +761,9 @@ class Macro(StructRNA):
__slots__ = ()
@classmethod
def define(self, opname):
def define(cls, opname):
from _bpy import ops
return ops.macro_define(self, opname)
return ops.macro_define(cls, opname)
class PropertyGroup(StructRNA, metaclass=RNAMetaPropGroup):

View File

@ -1029,7 +1029,7 @@ class VIEW3D_PT_tools_vertexpaint_options(Panel, View3DPaintPanel):
bl_options = {'DEFAULT_CLOSED'}
@classmethod
def poll(self, _context):
def poll(cls, _context):
# This is currently unused, since there aren't any Vertex Paint mode specific options.
return False