Remove a specific cache file.
(func, key_data)
| 436 | |
| 437 | @staticmethod |
| 438 | def delete(func, key_data): |
| 439 | """Remove a specific cache file.""" |
| 440 | _create_cache_directory_if_not_exists(func) |
| 441 | path = _get_cache_path(func, key_data) |
| 442 | _remove(path) |
| 443 | |
| 444 | @staticmethod |
| 445 | def delete_items(func, items): |
no test coverage detected