sqlalchemy-stubs
sqlalchemy-stubs copied to clipboard
Defining a setter on a hybrid_property method raises an already defined error in mypy
Basic reproduce
Class Model:
@hybrid_property
def property(self):
pass
@property.setter # error appears on this line
def property(self):
pass