Remove line continuations to help pytype parse (#390)

This commit is contained in:
alvarocaceres
2016-07-22 12:55:42 -05:00
committed by Matthias Kramm
parent 0863590721
commit f7b35bc8be
7 changed files with 11 additions and 22 deletions

View File

@@ -80,8 +80,7 @@ class ArgumentParser:
def format_usage(self) -> str: ...
def format_help(self) -> str: ...
def parse_known_args(self, args: Optional[str] = ...,
namespace: Optional[Namespace] = ...) \
-> Tuple[Namespace, List[str]]: ...
namespace: Optional[Namespace] = ...) -> Tuple[Namespace, List[str]]: ...
def convert_arg_line_to_args(self, arg_line: str) -> List[str]: ...
def exit(self, status: int = ..., message: Optional[str] = ...) -> None: ...
def error(self, message: str) -> None: ...