mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-07-18 06:10:11 +08:00
Mark stub-only private symbols as @type_check_only in third-party stubs (#14545)
This commit is contained in:
@@ -1,10 +1,11 @@
|
||||
from collections.abc import Iterator, Mapping, Set as AbstractSet
|
||||
from typing import TypedDict
|
||||
from typing import TypedDict, type_check_only
|
||||
|
||||
from pygments.token import _TokenType
|
||||
|
||||
ansicolors: AbstractSet[str] # not intended to be mutable
|
||||
|
||||
@type_check_only
|
||||
class _StyleDict(TypedDict):
|
||||
color: str | None
|
||||
bold: bool
|
||||
|
||||
Reference in New Issue
Block a user