(self, fmt: str, *args: Any)
| 588 | self._handle_api(POST_ROUTES, body) |
| 589 | |
| 590 | def log_message(self, fmt: str, *args: Any) -> None: |
| 591 | path, _query_params = _query(self.path) |
| 592 | if path == "/api/daily/status": |
| 593 | return |
| 594 | sys.stdout.write("[gui] " + fmt % args + "\n") |
| 595 | |
| 596 | |
| 597 | def run_server(host: str = "127.0.0.1", port: int = 8765, open_browser: bool = True) -> None: |