Removed function.
Build Base Application / Build (push) Successful in 1m32s

This commit is contained in:
2024-12-21 12:58:11 +01:00
parent 7e45775c2c
commit 695379dce0
-6
View File
@@ -75,9 +75,3 @@ def time_cache_async(timeout: int = 600):
return decorator return decorator
@cache_time_async(timeout=600)
async def expensive_async_calculation(x, y):
print("Computing...")
await asyncio.sleep(2)
return x + y