(self)
| 51 | config_file = Unicode("", help="Load this config file").tag(config=True) |
| 52 | |
| 53 | def start(self): |
| 54 | print(self.name) |
| 55 | PrintHello(parent=self).run() |
| 56 | |
| 57 | @classmethod |
| 58 | def get_subapp(cls, main_app: Application) -> Application: |
nothing calls this directly
no test coverage detected