mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-01-03 18:13:36 +08:00
Big diff: use lower-case list and dict (#5888)
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
import sys
|
||||
from typing import List, Tuple
|
||||
from typing import Tuple
|
||||
|
||||
if sys.platform == "win32":
|
||||
|
||||
ActionText: List[Tuple[str, str, str | None]]
|
||||
UIText: List[Tuple[str, str | None]]
|
||||
ActionText: list[Tuple[str, str, str | None]]
|
||||
UIText: list[Tuple[str, str | None]]
|
||||
|
||||
tables: List[str]
|
||||
tables: list[str]
|
||||
|
||||
Reference in New Issue
Block a user