mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-01-10 13:32:26 +08:00
Fix frozenset (#979)
This commit is contained in:
committed by
Guido van Rossum
parent
85866fe1b9
commit
bd5b33f3b1
@@ -619,7 +619,7 @@ class set(MutableSet[_T], Generic[_T]):
|
||||
def __gt__(self, s: AbstractSet[Any]) -> bool: ...
|
||||
# TODO more set operations
|
||||
|
||||
class frozenset(FrozenSet[_T], Generic[_T]):
|
||||
class frozenset(AbstractSet[_T], Generic[_T]):
|
||||
@overload
|
||||
def __init__(self) -> None: ...
|
||||
@overload
|
||||
|
||||
Reference in New Issue
Block a user