Formatting and fix Internal Server Error on upload

This commit is contained in:
Leo Vasanko
2023-10-26 18:59:19 +03:00
committed by LeoVasanko
parent 444f0226e6
commit 4a53d0b8e2
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.