Removed function.
All checks were successful
Build Base Application / Build (push) Successful in 1m32s

This commit is contained in:
retoor 2024-12-21 12:57:30 +01:00
parent 7e45775c2c
commit 695379dce0

View File

@ -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