(self, name: str, payload: dict[str, Any])
| 249 | return payload if isinstance(payload, dict) else None |
| 250 | |
| 251 | def _write_cache(self, name: str, payload: dict[str, Any]) -> dict[str, Any]: |
| 252 | write_json(self.cache_path(name), payload) |
| 253 | return payload |
| 254 | |
| 255 | def _base_task_payload( |
| 256 | self, |
no test coverage detected