reformat with black

This commit is contained in:
Maxim Kurnikov
2018-07-29 23:34:58 +03:00
parent 4866354600
commit cf85607969
343 changed files with 6054 additions and 2158 deletions

View File

@@ -5,6 +5,7 @@
from typing import Any
from typing import Any, Dict, List, Set, Tuple, Union
class BaseSerializer:
value: Any = ...
def __init__(self, value: Any) -> None: ...
@@ -29,7 +30,9 @@ class DecimalSerializer(BaseSerializer):
class DeconstructableSerializer(BaseSerializer):
@staticmethod
def serialize_deconstructed(path: str, args: Union[List[str], Tuple], kwargs: Dict[str, object]) -> Tuple[str, Set[str]]: ...
def serialize_deconstructed(
path: str, args: Union[List[str], Tuple], kwargs: Dict[str, object]
) -> Tuple[str, Set[str]]: ...
@staticmethod
def _serialize_path(path: str) -> Tuple[str, Set[str]]: ...
def serialize(self) -> Tuple[str, Set[str]]: ...