mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-09 21:46:42 +08:00
Use PEP 604 syntax wherever possible (#7493)
This commit is contained in:
@@ -2,9 +2,9 @@ from _typeshed import Self
|
||||
from types import TracebackType
|
||||
from typing import Any, Container, NamedTuple, Sequence, Text, Union
|
||||
|
||||
_Decimal = Union[Decimal, int]
|
||||
_Decimal = Decimal | int
|
||||
_DecimalNew = Union[Decimal, float, Text, tuple[int, Sequence[int], int]]
|
||||
_ComparableNum = Union[Decimal, float]
|
||||
_ComparableNum = Decimal | float
|
||||
|
||||
class DecimalTuple(NamedTuple):
|
||||
sign: int
|
||||
|
||||
Reference in New Issue
Block a user