QuackatronHQ / Gigarepo

No @classmethod decorator PYL-R0202
Anti-pattern
Major
a month ago2 years old
Consider using a decorator instead of calling classmethod
 29    def cmethod(cls, something):
 30        """class method-to-be"""
 31
 32    cmethod = classmethod(cmethod) 33
 34
 35class RandomNumberGenerator: