Skip to content

Commit

Permalink
docs: Fix formatting in cli-commands page
Browse files Browse the repository at this point in the history
  • Loading branch information
Sieboldianus committed May 8, 2023
1 parent 825008d commit c482347
Show file tree
Hide file tree
Showing 2 changed files with 583 additions and 619 deletions.
2 changes: 1 addition & 1 deletion docs/argparse/argparse_doc.py
Expand Up @@ -15,7 +15,7 @@ def extract_argscode():
# extract source code of parse_args
parse_args_source = inspect.getsource(BaseConfig.get_arg_parser)
# remove first three lines
for __ in range(0, 4):
for __ in range(0, 3):
parse_args_source = parse_args_source[parse_args_source.index("\n") + 1 :]
# insert at beginning
parse_args_source = (
Expand Down

0 comments on commit c482347

Please sign in to comment.