mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 13:04:46 +08:00
Use PEP 604 syntax wherever possible (#7493)
This commit is contained in:
@@ -1,10 +1,10 @@
|
||||
import sys
|
||||
from pathlib import Path
|
||||
from typing import BinaryIO, Callable, Union
|
||||
from typing import BinaryIO, Callable
|
||||
|
||||
__all__ = ["ZipAppError", "create_archive", "get_interpreter"]
|
||||
|
||||
_Path = Union[str, Path, BinaryIO]
|
||||
_Path = str | Path | BinaryIO
|
||||
|
||||
class ZipAppError(ValueError): ...
|
||||
|
||||
|
||||
Reference in New Issue
Block a user