diff options
author | Benjamin Peterson <benjamin@python.org> | 2015-01-13 14:17:24 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2015-01-13 14:17:24 (GMT) |
commit | 07f90476b954382e7a7ce95af696d90100a6eea1 (patch) | |
tree | ed0760ec0d5e55ed37a067e05119b81066367abf /Lib/test/test_argparse.py | |
parent | 6022f38dd80945ed512f3f8440e0220afebc2a3e (diff) | |
download | cpython-07f90476b954382e7a7ce95af696d90100a6eea1.zip cpython-07f90476b954382e7a7ce95af696d90100a6eea1.tar.gz cpython-07f90476b954382e7a7ce95af696d90100a6eea1.tar.bz2 |
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 b74b622..915e989 100644 --- a/Lib/test/test_argparse.py +++ b/Lib/test/test_argparse.py @@ -646,7 +646,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), |