We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c7db13 commit 74da5c6Copy full SHA for 74da5c6
mypy/main.py
@@ -1009,8 +1009,9 @@ def add_invertible_flag(
1009
)
1010
internals_group.add_argument("--pdb", action="store_true", help="Invoke pdb on fatal error")
1011
internals_group.add_argument(
1012
- "--extend-plugins", "--ep",
1013
- type=lambda s: [item.strip() for item in s.split(',')],
+ "--extend-plugins",
+ "--ep",
1014
+ type=lambda s: [item.strip() for item in s.split(",")],
1015
metavar="{MODULE|PLUGIN_FILE}",
1016
dest="special-opts:cli_plugins",
1017
help="Include user defined plugins during Mypy's type analysis",
0 commit comments