(self)
| 15 | classes = [OtherApp] |
| 16 | |
| 17 | def start(self): |
| 18 | # similar to OtherApp.launch_instance(), but without singleton |
| 19 | self.other_app = OtherApp(config=self.config) |
| 20 | self.other_app.initialize(["--OtherApp.log_level", "INFO"]) |
| 21 | self.other_app.start() |
| 22 | |
| 23 | |
| 24 | if __name__ == "__main__": |
nothing calls this directly
no test coverage detected