chore: remove unused calculate_tax function from billing module

This commit is contained in:
retoor 2024-12-21 11:57:30 +00:00
parent 6ee404c06a
commit 2ae0862b76

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