Skip to content

Commit

Permalink
Get rid of unneeded cache class (use indicescahe instead)
Browse files Browse the repository at this point in the history
  • Loading branch information
gumityolcu committed Apr 26, 2024
1 parent 1ada31e commit d1d81db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def exists(path, file_id) -> bool:
file_path = os.path.join(path, file_id)
return os.path.isfile(file_path)

class ExplanationsCache(Caches):
class ExplanationsCache(Cache):
@staticmethod
def save(path, file_id, explanations, indices) -> None:
file_path = os.path.join(path, file_id)
Expand Down

0 comments on commit d1d81db

Please sign in to comment.