(cache_tags)
| 231 | |
| 232 | |
| 233 | def cleanup(cache_tags): |
| 234 | cache_items = tuple(cache.CacheItem.iter_items(tags=cache_tags)) |
| 235 | click.confirm(f"You are about to delete {len(cache_items)} cache items. Proceed?", abort=True) |
| 236 | cache.CacheItem.cleanup(items=cache_items) |
nothing calls this directly
no test coverage detected