apply black and isort (#4287)

* apply black and isort

* move some type ignores
This commit is contained in:
Jelle Zijlstra
2020-06-28 13:31:00 -07:00
committed by GitHub
parent fe58699ca5
commit 5d553c9584
800 changed files with 13875 additions and 10332 deletions

View File

@@ -4,19 +4,26 @@
# Based on http://docs.python.org/3/library/pprint.html
import sys
from typing import Any, Dict, Tuple, IO, Optional
from typing import IO, Any, Dict, Optional, Tuple
if sys.version_info >= (3, 8):
def pformat(
object: object, indent: int = ..., width: int = ..., depth: Optional[int] = ..., *, compact: bool = ..., sort_dicts: bool = ...
object: object,
indent: int = ...,
width: int = ...,
depth: Optional[int] = ...,
*,
compact: bool = ...,
sort_dicts: bool = ...,
) -> str: ...
elif sys.version_info >= (3, 4):
def pformat(object: object, indent: int = ..., width: int = ...,
depth: Optional[int] = ..., *, compact: bool = ...) -> str: ...
def pformat(
object: object, indent: int = ..., width: int = ..., depth: Optional[int] = ..., *, compact: bool = ...
) -> str: ...
else:
def pformat(object: object, indent: int = ..., width: int = ...,
depth: Optional[int] = ...) -> str: ...
def pformat(object: object, indent: int = ..., width: int = ..., depth: Optional[int] = ...) -> str: ...
if sys.version_info >= (3, 8):
def pp(
@@ -43,11 +50,20 @@ if sys.version_info >= (3, 8):
) -> None: ...
elif sys.version_info >= (3, 4):
def pprint(object: object, stream: Optional[IO[str]] = ..., indent: int = ..., width: int = ...,
depth: Optional[int] = ..., *, compact: bool = ...) -> None: ...
def pprint(
object: object,
stream: Optional[IO[str]] = ...,
indent: int = ...,
width: int = ...,
depth: Optional[int] = ...,
*,
compact: bool = ...,
) -> None: ...
else:
def pprint(object: object, stream: Optional[IO[str]] = ..., indent: int = ..., width: int = ...,
depth: Optional[int] = ...) -> None: ...
def pprint(
object: object, stream: Optional[IO[str]] = ..., indent: int = ..., width: int = ..., depth: Optional[int] = ...
) -> None: ...
def isreadable(object: object) -> bool: ...
def isrecursive(object: object) -> bool: ...
@@ -66,15 +82,21 @@ class PrettyPrinter:
sort_dicts: bool = ...,
) -> None: ...
elif sys.version_info >= (3, 4):
def __init__(self, indent: int = ..., width: int = ..., depth: Optional[int] = ...,
stream: Optional[IO[str]] = ..., *, compact: bool = ...) -> None: ...
def __init__(
self,
indent: int = ...,
width: int = ...,
depth: Optional[int] = ...,
stream: Optional[IO[str]] = ...,
*,
compact: bool = ...,
) -> None: ...
else:
def __init__(self, indent: int = ..., width: int = ..., depth: Optional[int] = ...,
stream: Optional[IO[str]] = ...) -> None: ...
def __init__(
self, indent: int = ..., width: int = ..., depth: Optional[int] = ..., stream: Optional[IO[str]] = ...
) -> None: ...
def pformat(self, object: object) -> str: ...
def pprint(self, object: object) -> None: ...
def isreadable(self, object: object) -> bool: ...
def isrecursive(self, object: object) -> bool: ...
def format(self, object: object, context: Dict[int, Any], maxlevels: int,
level: int) -> Tuple[str, bool, bool]: ...
def format(self, object: object, context: Dict[int, Any], maxlevels: int, level: int) -> Tuple[str, bool, bool]: ...