pylint-errors

R0202 (no-classmethod-decorator)

:x: Problematic code:

class Foo:
    BAR = True

    def baz(cls):
        return cls.BAR

:heavy_check_mark: Correct code:

class Foo:
    BAR = True

    @classmethod
    def baz(cls):
        return cls.BAR

Rationale:

Used when a class method is defined without using the decorator syntax.