From a3651e438f2f13324056dffd983aaeaa88c6c2e5 Mon Sep 17 00:00:00 2001 From: Marcin Wieczorek Date: Wed, 8 Mar 2023 08:25:28 +0100 Subject: [PATCH] Fix style in argparse.rst (GH-101733) (cherry picked from commit 061325e0d2bbec6ff89d03f527c91dc7bfa14003) Co-authored-by: Marcin Wieczorek --- Doc/library/argparse.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Doc/library/argparse.rst b/Doc/library/argparse.rst index 7a36c5264aa0e7..8dfe86a4add33d 100644 --- a/Doc/library/argparse.rst +++ b/Doc/library/argparse.rst @@ -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