diff --git a/sqlalchemy-stubs/orm/attributes.pyi b/sqlalchemy-stubs/orm/attributes.pyi index d19fa6c..156b134 100644 --- a/sqlalchemy-stubs/orm/attributes.pyi +++ b/sqlalchemy-stubs/orm/attributes.pyi @@ -106,10 +106,7 @@ class Mapped(QueryableAttribute, Generic[_T]): def __get__(self, instance: None, owner: Any) -> "Mapped"[_T]: ... @overload def __get__(self, instance: object, owner: Any) -> _T: ... - @overload - def __set__(self, instance: Any, value: _T) -> None: ... - @overload - def __set__(self, instance: Any, value: ClauseElement) -> None: ... + def __set__(self, instance: Any, value: Any) -> None: ... def __delete__(self, instance: Any) -> None: ... @classmethod def _empty_constructor(cls, arg1: Any) -> "Mapped"[_T]: ...