Delete the cache file (forces re-run on next check).
(self)
| 637 | ) |
| 638 | |
| 639 | def invalidate(self) -> None: |
| 640 | """Delete the cache file (forces re-run on next check).""" |
| 641 | _run_zccache( |
| 642 | ["--cache-file", str(self.cache_file), "invalidate"], |
| 643 | check=True, |
| 644 | ) |
| 645 | |
| 646 | def get_cache_info(self) -> Optional[dict[str, Any]]: |
| 647 | """ |