mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 13:04:46 +08:00
Always alias collections.abc.Set (#6712)
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
from collections.abc import Iterator, Mapping, Set
|
||||
from collections.abc import Iterator, Mapping, Set as AbstractSet
|
||||
from typing_extensions import TypedDict
|
||||
|
||||
from pygments.token import _TokenType
|
||||
|
||||
ansicolors: Set[str] # not intended to be mutable (== typing.AbstractSet, not builtins.set)
|
||||
ansicolors: AbstractSet[str] # not intended to be mutable
|
||||
|
||||
class _StyleDict(TypedDict):
|
||||
color: str | None
|
||||
|
||||
Reference in New Issue
Block a user