Mark stub-only private symbols as @type_check_only in third-party stubs (#14545)

This commit is contained in:
Brian Schubert
2025-08-08 11:29:48 +02:00
committed by GitHub
parent a358dc24e8
commit 81c8fcb2e6
131 changed files with 334 additions and 147 deletions
+2 -1
View File
@@ -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