From 3772eb94d65cc05bf4253fbcc5a8c559f1ccc362 Mon Sep 17 00:00:00 2001 From: Herculino Trotta Date: Thu, 17 Oct 2024 13:24:10 -0300 Subject: [PATCH] refactor: remove debug print --- app/apps/net_worth/utils/calculate_net_worth.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/apps/net_worth/utils/calculate_net_worth.py b/app/apps/net_worth/utils/calculate_net_worth.py index 9e15e02..a80f38c 100644 --- a/app/apps/net_worth/utils/calculate_net_worth.py +++ b/app/apps/net_worth/utils/calculate_net_worth.py @@ -111,8 +111,6 @@ def calculate_currency_net_worth(): balance=Coalesce(Subquery(balance_subquery), Decimal("0")) ) - print(currencies_data[0].balance) - net_worth = {} for item in currencies_data: currency_name = item.name