Fixing flake8 E111, E114, E116, E203, E225, E262 errors

This commit is contained in:
Lukasz Langa
2016-12-20 01:39:18 -08:00
parent 6e2709906b
commit 68a49c2c2e
12 changed files with 18 additions and 43 deletions

View File

@@ -30,7 +30,7 @@ class Request(object):
def get_type(self): ...
def get_host(self) -> str: ...
def get_selector(self): ...
def set_proxy(self, host, type)-> None: ...
def set_proxy(self, host, type) -> None: ...
def has_proxy(self) -> bool: ...
def get_origin_req_host(self) -> str: ...
def is_unverifiable(self) -> bool: ...
@@ -156,5 +156,5 @@ class CacheFTPHandler(FTPHandler):
def check_cache(self): ...
def clear_cache(self): ...
def parse_http_list(s: AnyStr) -> List[AnyStr] : ...
def parse_http_list(s: AnyStr) -> List[AnyStr]: ...
def parse_keqv_list(l: List[AnyStr]) -> Dict[AnyStr, AnyStr]: ...