Skip to content

Commit

Permalink
Minor
Browse files Browse the repository at this point in the history
  • Loading branch information
sidjha1 committed Nov 12, 2024
1 parent 4e913d7 commit f9ab752
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion lotus/cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ class Cache:
def __init__(self, max_size: int):
self.max_size = max_size
self.cache: OrderedDict[str, Any] = OrderedDict()
self.enabled = True

def get(self, key: str) -> Any | None:
if not lotus.settings.enable_cache:
Expand Down

0 comments on commit f9ab752

Please sign in to comment.