pylint-errors

E0213 (no-self-argument)

:x: Problematic code:

class Foo:
    def __init__(some):
        pass

:heavy_check_mark: Correct code:

class Foo:
    def __init__(self):
        pass

Rationale:

Used when a method has an attribute different the “self” as first argument. This is considered as an error since this is a so common convention that you shouldn’t break it!