Remove phase state file (call on successful completion).
(self)
| 113 | return None |
| 114 | |
| 115 | def clear(self) -> None: |
| 116 | """Remove phase state file (call on successful completion).""" |
| 117 | with self._lock: |
| 118 | if self.state_file.exists(): |
| 119 | self.state_file.unlink() |
| 120 | |
| 121 | def _is_stale(self, state: dict[str, Any]) -> bool: |
| 122 | """ |