mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 04:34:28 +08:00
Big diff: Use new "|" union syntax (#5872)
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
from _typeshed import WriteableBuffer
|
||||
from io import BufferedIOBase, RawIOBase
|
||||
from typing import Any, Callable, Protocol, Tuple, Type, Union
|
||||
from typing import Any, Callable, Protocol, Tuple, Type
|
||||
|
||||
BUFFER_SIZE: Any
|
||||
|
||||
@@ -16,7 +16,7 @@ class DecompressReader(RawIOBase):
|
||||
self,
|
||||
fp: _Reader,
|
||||
decomp_factory: Callable[..., object],
|
||||
trailing_error: Union[Type[Exception], Tuple[Type[Exception], ...]] = ...,
|
||||
trailing_error: Type[Exception] | Tuple[Type[Exception], ...] = ...,
|
||||
**decomp_args: Any,
|
||||
) -> None: ...
|
||||
def readable(self) -> bool: ...
|
||||
|
||||
Reference in New Issue
Block a user