(self, tid: str)
| 65 | return list(self._tasks.values()) |
| 66 | |
| 67 | def get(self, tid: str) -> BgTask | None: |
| 68 | with self._lock: |
| 69 | return self._tasks.get(tid) |
| 70 | |
| 71 | def output(self, tid: str) -> str | None: |
| 72 | with self._lock: |
no outgoing calls
no test coverage detected