From d80a43cb6fc44def644893205ca5e012aa5d6356 Mon Sep 17 00:00:00 2001 From: Azeez Muibi Date: Thu, 24 Apr 2025 10:50:00 +0100 Subject: [PATCH] update --- app/models/repayment.py | 1 - 1 file changed, 1 deletion(-) diff --git a/app/models/repayment.py b/app/models/repayment.py index 91850c4..3e19ad3 100644 --- a/app/models/repayment.py +++ b/app/models/repayment.py @@ -33,7 +33,6 @@ class Repayment(db.Model): # Check that the loan is active if loan.status != LoanStatus.ACTIVE: raise ValueError(f"Repayment cannot be processed. Loan status: ({loan.status})") - repayment = cls( customer_id=customer_id,