File tree Expand file tree Collapse file tree 2 files changed +12
-1
lines changed Expand file tree Collapse file tree 2 files changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -499,7 +499,10 @@ Force certain sub modules to show separately
499499** Default:** ` () `
500500** Config default:** ` [] `
501501** Python & Config File Name:** forced_separate
502- ** CLI Flags:** ** Not Supported**
502+ ** CLI Flags:**
503+
504+ - --fs
505+ - --forced-separate
503506
504507** Examples:**
505508
Original file line number Diff line number Diff line change @@ -503,6 +503,14 @@ def _build_arg_parser() -> argparse.ArgumentParser:
503503 "to be grid wrapped regardless of line "
504504 "length. If 0 is passed in (the global default) only line length is considered." ,
505505 )
506+ output_group .add_argument (
507+ "--fs" ,
508+ "--forced-separate" ,
509+ dest = "forced_separate" ,
510+ action = "append" ,
511+ help = "Force specified sub modules to show separately. To specify multiple modules, "
512+ "use the argument multiple times: --forced-separate typing --forced-separate six." ,
513+ )
506514 output_group .add_argument (
507515 "-i" ,
508516 "--indent" ,
You can’t perform that action at this time.
0 commit comments