remove redundant overload

This commit is contained in:
Benedikt Bartscher 2025-02-01 21:14:06 +01:00
parent b77e51b09c
commit 7e6bc323c9
No known key found for this signature in database

View File

@ -3237,11 +3237,6 @@ class Field(Generic[FIELD_TYPE]):
self: Field[BASE_TYPE], instance: None, owner: Any
) -> ObjectVar[BASE_TYPE]: ...
@overload
def __get__(
self: Field[BASE_TYPE], instance: None, owner: Any
) -> ObjectVar[BASE_TYPE]: ...
@overload
def __get__(
self: Field[SQLA_TYPE], instance: None, owner: Any