We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df3ed54 commit 8bf8e3dCopy full SHA for 8bf8e3d
Doc/library/argparse.rst
@@ -34,9 +34,9 @@ around an instance of :class:`argparse.ArgumentParser`. It is a container for
34
argument specifications and has options that apply the parser as whole::
35
36
parser = argparse.ArgumentParser(
37
- prog = 'ProgramName',
38
- description = 'What the program does',
39
- epilog = 'Text at the bottom of help')
+ prog='ProgramName',
+ description='What the program does',
+ epilog='Text at the bottom of help')
40
41
The :meth:`ArgumentParser.add_argument` method attaches individual argument
42
specifications to the parser. It supports positional arguments, options that
0 commit comments