Exception raised when there is something wrong with the status file. For example: - No status file found - Status file malformed - Process whose pid is in the status file does not exist
| 346 | |
| 347 | |
| 348 | class BadStatus(Exception): |
| 349 | """Exception raised when there is something wrong with the status file. |
| 350 | |
| 351 | For example: |
| 352 | - No status file found |
| 353 | - Status file malformed |
| 354 | - Process whose pid is in the status file does not exist |
| 355 | """ |
| 356 | |
| 357 | |
| 358 | def read_status(status_file: str) -> dict[str, object]: |
no outgoing calls
no test coverage detected
searching dependent graphs…