mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-02-20 16:48:27 +08:00
Fixing flake8 E121, E122, E123, E124, E125, E126 errors
This commit is contained in:
@@ -14,19 +14,22 @@ template = ... # type: str
|
||||
|
||||
# function stubs
|
||||
def TemporaryFile(
|
||||
mode: str = ..., buffering: int = ..., encoding: str = ...,
|
||||
newline: str = ..., suffix: str = ..., prefix: str = ...,
|
||||
dir: str = ...) -> BinaryIO:
|
||||
mode: str = ..., buffering: int = ..., encoding: str = ...,
|
||||
newline: str = ..., suffix: str = ..., prefix: str = ...,
|
||||
dir: str = ...
|
||||
) -> BinaryIO:
|
||||
...
|
||||
def NamedTemporaryFile(
|
||||
mode: str = ..., buffering: int = ..., encoding: str = ...,
|
||||
newline: str = ..., suffix: str = ..., prefix: str = ...,
|
||||
dir: str = ..., delete: bool =...) -> BinaryIO:
|
||||
mode: str = ..., buffering: int = ..., encoding: str = ...,
|
||||
newline: str = ..., suffix: str = ..., prefix: str = ...,
|
||||
dir: str = ..., delete: bool =...
|
||||
) -> BinaryIO:
|
||||
...
|
||||
def SpooledTemporaryFile(
|
||||
max_size: int = ..., mode: str = ..., buffering: int = ...,
|
||||
encoding: str = ..., newline: str = ..., suffix: str = ...,
|
||||
prefix: str = ..., dir: str = ...) -> BinaryIO:
|
||||
max_size: int = ..., mode: str = ..., buffering: int = ...,
|
||||
encoding: str = ..., newline: str = ..., suffix: str = ...,
|
||||
prefix: str = ..., dir: str = ...
|
||||
) -> BinaryIO:
|
||||
...
|
||||
|
||||
class TemporaryDirectory:
|
||||
|
||||
Reference in New Issue
Block a user