We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1d1816 commit 672c349Copy full SHA for 672c349
1 file changed
stdlib/typing.pyi
@@ -726,7 +726,7 @@ class AbstractSet(Collection[_KT_co]):
726
def __ge__(self, other: AbstractSet[Hashable], /) -> bool: ...
727
def __and__(self, other: AbstractSet[Hashable], /) -> AbstractSet[_KT_co]: ...
728
def __or__(self, other: AbstractSet[_KT], /) -> AbstractSet[_KT_co | _KT]: ...
729
- def __sub__(self, other: AbstractSet[Hashable], /) -> AbstractSet[_T_co]: ...
+ def __sub__(self, other: AbstractSet[Hashable], /) -> AbstractSet[_KT_co]: ...
730
def __xor__(self, other: AbstractSet[_KT], /) -> AbstractSet[_KT_co | _KT]: ...
731
def __eq__(self, other: object, /) -> bool: ...
732
def isdisjoint(self, other: Iterable[Hashable], /) -> bool: ...
0 commit comments