File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff 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 )
You can’t perform that action at this time.
0 commit comments