From 695379dce0f4a8bdb6e8858661fe59a32521fd14 Mon Sep 17 00:00:00 2001 From: retoor Date: Sat, 21 Dec 2024 12:57:30 +0100 Subject: [PATCH] Removed function. --- src/app/cache.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/app/cache.py b/src/app/cache.py index 0e8411a..2c09359 100644 --- a/src/app/cache.py +++ b/src/app/cache.py @@ -75,9 +75,3 @@ def time_cache_async(timeout: int = 600): return decorator - -@cache_time_async(timeout=600) -async def expensive_async_calculation(x, y): - print("Computing...") - await asyncio.sleep(2) - return x + y