(self)
| 337 | return pids[0] |
| 338 | |
| 339 | def stop(self) -> None: |
| 340 | if not self.env: |
| 341 | raise RuntimeError('未设置环境') |
| 342 | self.py_main.only_stop_main_project(self.env.project_name) |
| 343 | |
| 344 | def get_log(self) -> str: |
| 345 | if not self.env: |
nothing calls this directly
no test coverage detected