pylint-errors

R0206 (property-with-parameters)

:x: Problematic code:

class Foo:
    @property
    def bar(self, arg):
        pass

:heavy_check_mark: Correct code:

class Foo:
    @property
    def bar(self):
        pass

Rationale:

Used when detected that a property also has parameters, which are useless, given that properties cannot be called with additional arguments.