@classmethod — cls. @staticmethod — no args.
cls
1class User:2 @classmethod3 def create(cls):4 return cls()5 6 @staticmethod7 def validate():8 pass