Formatting and fix Internal Server Error on upload

This commit is contained in:
2023-10-26 11:18:59 +00:00
parent 96e007b068
commit ab6b19e538
18 changed files with 255 additions and 77 deletions
+1
View File
@@ -11,6 +11,7 @@ class LRUCache:
maxage (float): Max age for items in cache in seconds.
cache (list): Internal list storing the cache items.
"""
def __init__(self, open: callable, *, capacity: int, maxage: float):
"""
Initialize LRUCache.