| 702 | |
| 703 | |
| 704 | class Sub1(Application): |
| 705 | subcommands: dict = { # type:ignore |
| 706 | "sub2": (Sub2, "Application class"), |
| 707 | "sub3": (lambda root: Sub3(parent=root, flag=True), "factory"), |
| 708 | } |
| 709 | |
| 710 | |
| 711 | class DeprecatedApp(Application): |
nothing calls this directly
no test coverage detected
searching dependent graphs…