(cls, main_app: Application)
| 56 | |
| 57 | @classmethod |
| 58 | def get_subapp(cls, main_app: Application) -> Application: |
| 59 | main_app.clear_instance() |
| 60 | return cls.instance(parent=main_app) # type: ignore[no-any-return] |
| 61 | |
| 62 | |
| 63 | class MainApp(Application): |
nothing calls this directly
no test coverage detected