Removed an unused import from the forms of the accounting application.

This commit is contained in:
依瑪貓 2020-08-09 21:03:37 +08:00
parent a26eeb5ea6
commit c67bdb9be3

View File

@ -27,8 +27,7 @@ from django.db.models.functions import Length
from django.utils.translation import gettext as _ from django.utils.translation import gettext as _
from .models import Account, Record from .models import Account, Record
from .validators import validate_record_account_code, validate_record_id, \ from .validators import validate_record_account_code, validate_record_id
validate_account_code
class RecordForm(forms.Form): class RecordForm(forms.Form):