Skip to content

Commit

Permalink
Update cache_config.py
Browse files Browse the repository at this point in the history
Co-authored-by: claravox <claravox@users.noreply.github.com>
  • Loading branch information
lwesterhof and claravox authored Jan 16, 2025
1 parent eb419e8 commit 810ce0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cache_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ def clear_api_cache_keys(fn: str) -> None:

# Get the keys to delete.
keys_to_delete = [key for key in filter_cache_keys(filter_key)]

keys_to_delete = list(filter_cache_keys(filter_key))
# Attempt to delete the keys from the cache.
try:
cache.delete_many(*keys_to_delete)
Expand Down

0 comments on commit 810ce0c

Please sign in to comment.