(ctx: CLIContext, args: argparse.Namespace)
| 820 | |
| 821 | |
| 822 | async def _run_makemigrations(ctx: CLIContext, args: argparse.Namespace) -> None: |
| 823 | await makemigrations(ctx, tuple(args.app_labels), args.empty, args.name) |
| 824 | |
| 825 | |
| 826 | async def _run_migrate_cmd(ctx: CLIContext, args: argparse.Namespace) -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…