Skip to content

Commit

Permalink
Fix type in argparse.HelpFormatter._fill_text() (#3229)
Browse files Browse the repository at this point in the history
  • Loading branch information
jjmortensen authored and srittau committed Sep 11, 2019
1 parent c9f19b1 commit 686e21d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stdlib/2and3/argparse.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ class HelpFormatter:
def _expand_help(self, action: Action) -> _Text: ...
def _iter_indented_subactions(self, action: Action) -> Generator[Action, None, None]: ...
def _split_lines(self, text: Text, width: int) -> List[_Text]: ...
def _fill_text(self, text: Text, width: int, indent: int) -> _Text: ...
def _fill_text(self, text: Text, width: int, indent: Text) -> _Text: ...
def _get_help_string(self, action: Action) -> Optional[_Text]: ...
def _get_default_metavar_for_optional(self, action: Action) -> _Text: ...
def _get_default_metavar_for_positional(self, action: Action) -> _Text: ...
Expand Down

0 comments on commit 686e21d

Please sign in to comment.