(cache: JsonDict, incremental_cache_path: str = CACHE_PATH)
| 204 | |
| 205 | |
| 206 | def save_cache(cache: JsonDict, incremental_cache_path: str = CACHE_PATH) -> None: |
| 207 | with open(incremental_cache_path, "w") as stream: |
| 208 | json.dump(cache, stream, indent=2) |
| 209 | |
| 210 | |
| 211 | def set_expected( |