From f04a4e5bc5085653e45cd774476eda0ced320b3a Mon Sep 17 00:00:00 2001 From: Herculino Trotta Date: Thu, 17 Oct 2024 13:05:26 -0300 Subject: [PATCH] refactor: remove debug print --- app/apps/transactions/views/installment_plans.py | 1 - 1 file changed, 1 deletion(-) diff --git a/app/apps/transactions/views/installment_plans.py b/app/apps/transactions/views/installment_plans.py index d429cfc..4df92fd 100644 --- a/app/apps/transactions/views/installment_plans.py +++ b/app/apps/transactions/views/installment_plans.py @@ -40,7 +40,6 @@ def installment_plans_list(request): def installment_plan_transactions(request, installment_plan_id): installment_plan = get_object_or_404(InstallmentPlan, id=installment_plan_id) transactions = installment_plan.transactions.all().order_by("reference_date", "id") - print(transactions) return render( request,