File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 2929
3030
3131class AugmentedHelpFormatter (argparse .RawDescriptionHelpFormatter ):
32- def __init__ (self , prog : str ) -> None :
33- super ().__init__ (prog = prog , max_help_position = 30 )
32+ def __init__ (self , prog : str , ** kwargs : Any ) -> None :
33+ super ().__init__ (prog = prog , max_help_position = 30 , ** kwargs )
3434
3535
3636parser = argparse .ArgumentParser (
Original file line number Diff line number Diff line change @@ -249,8 +249,8 @@ def show_messages(
249249
250250# Make the help output a little less jarring.
251251class AugmentedHelpFormatter (argparse .RawDescriptionHelpFormatter ):
252- def __init__ (self , prog : str ) -> None :
253- super ().__init__ (prog = prog , max_help_position = 28 )
252+ def __init__ (self , prog : str , ** kwargs : Any ) -> None :
253+ super ().__init__ (prog = prog , max_help_position = 28 , ** kwargs )
254254
255255 def _fill_text (self , text : str , width : int , indent : str ) -> str :
256256 if "\n " in text :
You can’t perform that action at this time.
0 commit comments