mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-01-02 01:23:24 +08:00
Flake8 fixes (#2549)
* Fix over-indented continuation lines * Fix under-indented continuation lines * Fix whitespace around default operator problems * Limit line lengths * Fix inconsistent files
This commit is contained in:
committed by
Jelle Zijlstra
parent
f362cf47fa
commit
006a79220f
@@ -23,7 +23,7 @@ if sys.version_info >= (3, 5):
|
||||
def NamedTemporaryFile(
|
||||
mode: str = ..., buffering: int = ..., encoding: Optional[str] = ...,
|
||||
newline: Optional[str] = ..., suffix: Optional[AnyStr] = ..., prefix: Optional[AnyStr] = ...,
|
||||
dir: Optional[AnyStr] = ..., delete: bool =...
|
||||
dir: Optional[AnyStr] = ..., delete: bool = ...
|
||||
) -> IO[Any]:
|
||||
...
|
||||
def SpooledTemporaryFile(
|
||||
@@ -61,7 +61,7 @@ else:
|
||||
def NamedTemporaryFile(
|
||||
mode: str = ..., buffering: int = ..., encoding: Optional[str] = ...,
|
||||
newline: Optional[str] = ..., suffix: str = ..., prefix: str = ...,
|
||||
dir: Optional[str] = ..., delete: bool =...
|
||||
dir: Optional[str] = ..., delete: bool = ...
|
||||
) -> IO[Any]:
|
||||
...
|
||||
def SpooledTemporaryFile(
|
||||
|
||||
Reference in New Issue
Block a user