From c67bdb9be32f73e851e1ae2a7f5c5dad6ffb0a26 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BE=9D=E7=91=AA=E8=B2=93?= Date: Sun, 9 Aug 2020 21:03:37 +0800 Subject: [PATCH] Removed an unused import from the forms of the accounting application. --- accounting/forms.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/accounting/forms.py b/accounting/forms.py index 4e48336..616b1e9 100644 --- a/accounting/forms.py +++ b/accounting/forms.py @@ -27,8 +27,7 @@ from django.db.models.functions import Length from django.utils.translation import gettext as _ from .models import Account, Record -from .validators import validate_record_account_code, validate_record_id, \ - validate_account_code +from .validators import validate_record_account_code, validate_record_id class RecordForm(forms.Form):