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.
```
This commit is contained in:
Nikita Sobolev
2022-11-10 16:32:22 +03:00
committed by GitHub
parent 068b0b488a
commit 805519717b

View File

@@ -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."
),
)