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 Callable, Dict, Optional, Tuple, Union
color_names: Any
foreground: Any
background: Any
@@ -20,4 +21,8 @@ LIGHT_PALETTE: str
PALETTES: Any
DEFAULT_PALETTE = DARK_PALETTE
def parse_color_setting(config_string: str) -> Optional[Union[Dict[str, Dict[str, Union[str, Tuple[str]]]], Dict[str, Dict[str, str]]]]: ...
def parse_color_setting(
config_string: str
) -> Optional[
Union[Dict[str, Dict[str, Union[str, Tuple[str]]]], Dict[str, Dict[str, str]]]
]: ...