From 805519717b7213ed232593931df815fd6c839ff5 Mon Sep 17 00:00:00 2001 From: Nikita Sobolev Date: Thu, 10 Nov 2022 16:32:22 +0300 Subject: [PATCH] `regr_test.py`: fix typo in `--help` (#9147) It used to be: ``` -p [{3.11,3.10,3.9,3.8,3.7} ...], --python-version [{3.11,3.10,3.9,3.8,3.7} ...] Run mypy for certain Python versions (defaults to sys.version_info[:2])Note that this cannot be specified if --all is also specified. ``` --- tests/regr_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/regr_test.py b/tests/regr_test.py index fc9f4b135..5c5d695a1 100644 --- a/tests/regr_test.py +++ b/tests/regr_test.py @@ -75,7 +75,7 @@ parser.add_argument( nargs="*", action="extend", help=( - "Run mypy for certain Python versions (defaults to sys.version_info[:2])" + "Run mypy for certain Python versions (defaults to sys.version_info[:2]). " "Note that this cannot be specified if --all is also specified." ), )