Fixing flake8 E261 errors

This commit is contained in:
Lukasz Langa
2016-12-19 22:09:35 -08:00
parent b84f20a011
commit fe0e3744cc
219 changed files with 4041 additions and 3099 deletions

View File

@@ -40,10 +40,10 @@ class _ResultMixinBytes(_ResultMixinBase[str]):
class _NetlocResultMixinBase(Generic[AnyStr]):
username = ... # type: AnyStr
password = ... # type: AnyStr
hostname = ... # type: AnyStr
port = ... # type: int
username = ... # type: AnyStr
password = ... # type: AnyStr
hostname = ... # type: AnyStr
port = ... # type: int
class _NetlocResultMixinStr(_NetlocResultMixinBase[str], _ResultMixinStr): ...
@@ -51,23 +51,23 @@ class _NetlocResultMixinStr(_NetlocResultMixinBase[str], _ResultMixinStr): ...
class _NetlocResultMixinBytes(_NetlocResultMixinBase[str], _ResultMixinBytes): ...
class _DefragResultBase(tuple, Generic[AnyStr]):
url = ... # type: AnyStr
fragment = ... # type: AnyStr
url = ... # type: AnyStr
fragment = ... # type: AnyStr
class _SplitResultBase(tuple, Generic[AnyStr]):
scheme = ... # type: AnyStr
netloc = ... # type: AnyStr
path = ... # type: AnyStr
query = ... # type: AnyStr
fragment = ... # type: AnyStr
scheme = ... # type: AnyStr
netloc = ... # type: AnyStr
path = ... # type: AnyStr
query = ... # type: AnyStr
fragment = ... # type: AnyStr
class _ParseResultBase(tuple, Generic[AnyStr]):
scheme = ... # type: AnyStr
netloc = ... # type: AnyStr
path = ... # type: AnyStr
params = ... # type: AnyStr
query = ... # type: AnyStr
fragment = ... # type: AnyStr
scheme = ... # type: AnyStr
netloc = ... # type: AnyStr
path = ... # type: AnyStr
params = ... # type: AnyStr
query = ... # type: AnyStr
fragment = ... # type: AnyStr
# Structured result objects for string data
class DefragResult(_DefragResultBase[str], _ResultMixinStr): ...