(cls, app: Application)
| 13 | class SubApp2(Application): |
| 14 | @classmethod |
| 15 | def get_subapp_instance(cls, app: Application) -> Application: |
| 16 | app.clear_instance() # since Application is singleton, need to clear main app |
| 17 | return cls.instance(parent=app) # type: ignore[no-any-return] |
| 18 | |
| 19 | |
| 20 | class MainApp(Application): |
nothing calls this directly
no test coverage detected