mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-01-09 04:52:23 +08:00
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:
@@ -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."
|
||||
),
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user