class Foo:
@property
def bar(self, arg):
pass
class Foo:
@property
def bar(self):
pass
Used when detected that a property also has parameters, which are useless, given that properties cannot be called with additional arguments.