Skip to content

Commit

Permalink
Fix style in argparse.rst (pythonGH-101733)
Browse files Browse the repository at this point in the history
(cherry picked from commit 061325e)

Co-authored-by: Marcin Wieczorek <[email protected]>
  • Loading branch information
MarcinWieczorek authored and miss-islington committed Mar 8, 2023
1 parent df3ed54 commit a3651e4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Doc/library/argparse.rst
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ around an instance of :class:`argparse.ArgumentParser`. It is a container for
argument specifications and has options that apply the parser as whole::

parser = argparse.ArgumentParser(
prog = 'ProgramName',
description = 'What the program does',
epilog = 'Text at the bottom of help')
prog='ProgramName',
description='What the program does',
epilog='Text at the bottom of help')

The :meth:`ArgumentParser.add_argument` method attaches individual argument
specifications to the parser. It supports positional arguments, options that
Expand Down

0 comments on commit a3651e4

Please sign in to comment.