mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-02-25 02:57:14 +08:00
Use PEP 585 syntax wherever possible (#6717)
This commit is contained in:
@@ -1,10 +1,10 @@
|
||||
from typing import Any, Tuple
|
||||
from typing import Any
|
||||
|
||||
LC_CTYPE: Any
|
||||
PLURALS: Any
|
||||
DEFAULT_PLURAL: Any
|
||||
|
||||
class _PluralTuple(Tuple[int, str]):
|
||||
class _PluralTuple(tuple[int, str]):
|
||||
num_plurals: Any
|
||||
plural_expr: Any
|
||||
plural_forms: Any
|
||||
|
||||
Reference in New Issue
Block a user