refactor: remove debug prints

This commit is contained in:
Herculino Trotta
2024-11-13 12:41:53 -03:00
parent 759b2a5f13
commit 0493ec34e8
2 changed files with 1 additions and 2 deletions

View File

@@ -155,7 +155,7 @@ def strategy_detail(request, strategy_id):
"investment_frequency": strategy.investment_frequency_data(),
"price_comparison_data": strategy.price_comparison_data(),
}
print(strategy.price_comparison_data())
return render(request, "dca/fragments/strategy/details.html", context)

View File

@@ -45,7 +45,6 @@ def active_recurring_transactions_list(request):
is_paused=False,
).order_by("-start_date", "description", "id")
print(recurring_transactions)
return render(
request,
"recurring_transactions/fragments/table.html",