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:
@@ -12,7 +12,7 @@ from typing_extensions import Literal
|
||||
class _SupportsTimeTuple(Protocol):
|
||||
def timetuple(self) -> time.struct_time: ...
|
||||
|
||||
_DateTimeComparable = Union[DateTime, datetime, str, _SupportsTimeTuple]
|
||||
_DateTimeComparable = DateTime | datetime | str | _SupportsTimeTuple
|
||||
_Marshallable = Union[None, bool, int, float, str, bytes, tuple[Any, ...], list[Any], dict[Any, Any], datetime, DateTime, Binary]
|
||||
_XMLDate = Union[int, datetime, tuple[int, ...], time.struct_time]
|
||||
_HostType = Union[tuple[str, dict[str, str]], str]
|
||||
|
||||
Reference in New Issue
Block a user