(subparsers: argparse._SubParsersAction)
| 710 | |
| 711 | |
| 712 | def _add_shell_parser(subparsers: argparse._SubParsersAction) -> None: |
| 713 | shell_parser = subparsers.add_parser( |
| 714 | "shell", help="Start an interactive shell (requires ipython or ptpython)." |
| 715 | ) |
| 716 | shell_parser.set_defaults(func=_run_shell) |
| 717 | |
| 718 | |
| 719 | def _add_makemigrations_parser(subparsers: argparse._SubParsersAction) -> None: |
no outgoing calls
no test coverage detected
searching dependent graphs…