pylint-errors

E0211 (no-method-argument)

:x: Problematic code:

class Foo:
    def bar():
        pass

:heavy_check_mark: Correct code:

class Foo:
    def bar(self):
        pass

Rationale:

Used when a method which should have the bound instance as first argument has no argument defined.