@classmethod — cls. @staticmethod — no auto arg.
cls
1class User:2 @classmethod3 def create(cls, name):4 return cls(name)5 6 @staticmethod7 def validate(name):8 return bool(name)