Skip to content

Commit 672c349

Browse files
authored
commit 10
1 parent d1d1816 commit 672c349

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

stdlib/typing.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -726,7 +726,7 @@ class AbstractSet(Collection[_KT_co]):
726726
def __ge__(self, other: AbstractSet[Hashable], /) -> bool: ...
727727
def __and__(self, other: AbstractSet[Hashable], /) -> AbstractSet[_KT_co]: ...
728728
def __or__(self, other: AbstractSet[_KT], /) -> AbstractSet[_KT_co | _KT]: ...
729-
def __sub__(self, other: AbstractSet[Hashable], /) -> AbstractSet[_T_co]: ...
729+
def __sub__(self, other: AbstractSet[Hashable], /) -> AbstractSet[_KT_co]: ...
730730
def __xor__(self, other: AbstractSet[_KT], /) -> AbstractSet[_KT_co | _KT]: ...
731731
def __eq__(self, other: object, /) -> bool: ...
732732
def isdisjoint(self, other: Iterable[Hashable], /) -> bool: ...

0 commit comments

Comments
 (0)