Fixing flake8 E303 errors

This commit is contained in:
Lukasz Langa
2016-12-20 01:07:20 -08:00
parent d70bb0c00f
commit ad9038dcd7
4 changed files with 0 additions and 6 deletions

View File

@@ -27,5 +27,4 @@ ignore = F401, F811, E127, E128, E301, E302, E305, E501, E701, E704
# 5 F405 name undefined or from * imports
# 4 E262 inline comment should start with #
# 4 E114 indentation is not a multiple of four
# 3 E303 too many blank lines
# 2 B303 __metaclass__ use on Python 3

View File

@@ -109,8 +109,6 @@ def RegisterValidator(flag_name: str,
flag_values: FlagValues = ...) -> None: ...
def MarkFlagAsRequired(flag_name: str, flag_values: FlagValues = ...) -> None: ...
def DEFINE(parser: ArgumentParser, name: str, default: Any, help: str,
flag_values: FlagValues = ..., serializer: ArgumentSerializer = ..., **args: Any) -> None: ...
def DEFINE_flag(flag: Flag, flag_values: FlagValues = ...) -> None: ...

View File

@@ -57,7 +57,6 @@ class LazyFile:
...
class KeepOpenFile(object):
_file: IO

View File

@@ -102,8 +102,6 @@ class Requirement:
-> bool: ...
def __eq__(self, other_requirement: Any) -> bool: ...
def load_entry_point(dist: _EPDistType, group: str, name: str) -> None: ...
def get_entry_info(dist: _EPDistType, group: str,
name: str) -> Optional[EntryPoint]: ...