diff --git a/app/main.py b/app/main.py index fa02c6b4..9f7f59e1 100644 --- a/app/main.py +++ b/app/main.py @@ -5,7 +5,6 @@ def cache(func: Callable) -> Any: results = {} wraps(func) - def wrapper(*args, **kwargs) -> Any: key = tuple(args) + tuple(*kwargs.items()) if key in results: