Skip to content

Commit f57dcde

Browse files
committed
moved logic to internals
Signed-off-by: Dibri Nsofor <[email protected]>
1 parent 79092dd commit f57dcde

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

mypy/main.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1003,17 +1003,17 @@ def add_invertible_flag(
10031003
action="store_true",
10041004
help="Skip cache internal consistency checks based on mtime",
10051005
)
1006-
incremental_group.add_argument(
1007-
"--plugins",
1008-
nargs="*",
1009-
dest="special-opts:cli_plugins",
1010-
help="Include user defined plugins during Mypy's type analysis",
1011-
)
10121006

10131007
internals_group = parser.add_argument_group(
10141008
title="Advanced options", description="Debug and customize mypy internals."
10151009
)
10161010
internals_group.add_argument("--pdb", action="store_true", help="Invoke pdb on fatal error")
1011+
internals_group.add_argument(
1012+
"--plugins",
1013+
nargs="*",
1014+
dest="special-opts:cli_plugins",
1015+
help="Include user defined plugins during Mypy's type analysis",
1016+
)
10171017
internals_group.add_argument(
10181018
"--show-traceback", "--tb", action="store_true", help="Show traceback on fatal error"
10191019
)

0 commit comments

Comments
 (0)