(cls, app: Application)
| 49 | class SubApp2(ArgcompleteApp): |
| 50 | @classmethod |
| 51 | def get_subapp_instance(cls, app: Application) -> Application: |
| 52 | app.clear_instance() # since Application is singleton, need to clear main app |
| 53 | return cls.instance(parent=app) # type: ignore[no-any-return] |
| 54 | |
| 55 | |
| 56 | class MainApp(ArgcompleteApp): |
nothing calls this directly
no test coverage detected