mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-20 19:01:15 +08:00
Big diff: Use new "|" union syntax (#5872)
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
import sys
|
||||
from typing import List, Optional, Tuple
|
||||
from typing import List, Tuple
|
||||
|
||||
if sys.platform == "win32":
|
||||
|
||||
ActionText: List[Tuple[str, str, Optional[str]]]
|
||||
UIText: List[Tuple[str, Optional[str]]]
|
||||
ActionText: List[Tuple[str, str, str | None]]
|
||||
UIText: List[Tuple[str, str | None]]
|
||||
|
||||
tables: List[str]
|
||||
|
||||
Reference in New Issue
Block a user