mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-04-26 16:50:25 +08:00
16ae4c6120
See discussion in #2491 Co-authored-by: Ivan Levkivskyi <ilevkivskyi@dropbox.com>
10 lines
202 B
Python
10 lines
202 B
Python
import sys
|
|
from typing import List, Optional, Tuple
|
|
|
|
if sys.platform == "win32":
|
|
|
|
ActionText: List[Tuple[str, str, Optional[str]]]
|
|
UIText: List[Tuple[str, Optional[str]]]
|
|
|
|
tables: List[str]
|