diff options
author | Benjamin Peterson <benjamin@python.org> | 2015-01-13 09:17:24 -0500 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2015-01-13 09:17:24 -0500 |
commit | 82f34ada45f96c13eb68927d6beccdcbab2c77b3 (patch) | |
tree | 136839c19a7d640d61b84b04129a76e0063b87ba /Lib/test/test_argparse.py | |
parent | 38dc250521d2c34f58537b25301a0ac9a4bb6c85 (diff) | |
download | cpython-git-82f34ada45f96c13eb68927d6beccdcbab2c77b3.tar.gz |
fix instances of consecutive articles (closes #23221)
Patch by Karan Goel.
Diffstat (limited to 'Lib/test/test_argparse.py')
-rw-r--r-- | Lib/test/test_argparse.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_argparse.py b/Lib/test/test_argparse.py index 98ccfe4484..1164f3feb9 100644 --- a/Lib/test/test_argparse.py +++ b/Lib/test/test_argparse.py @@ -644,7 +644,7 @@ class TestOptionalsChoices(ParserTestCase): class TestOptionalsRequired(ParserTestCase): - """Tests the an optional action that is required""" + """Tests an optional action that is required""" argument_signatures = [ Sig('-x', type=int, required=True), |