From fc2cd3e3ccf57596779957dfb4bfe3cf2cba8a11 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 13:25:02 +0800 Subject: [PATCH] Removed unused imports from the template tags of the Mia core application and the forms of the accounting application. --- accounting/forms.py | 1 - mia_core/templatetags/mia_core.py | 1 - 2 files changed, 2 deletions(-) diff --git a/accounting/forms.py b/accounting/forms.py index e91a507..f977af3 100644 --- a/accounting/forms.py +++ b/accounting/forms.py @@ -24,7 +24,6 @@ from django import forms from django.core.validators import RegexValidator from django.utils.translation import gettext as _ -from mia_core.status import retrieve_status from .models import Account, Record from .validators import validate_record_account_code, validate_record_id, \ validate_account_code diff --git a/mia_core/templatetags/mia_core.py b/mia_core/templatetags/mia_core.py index b1696bc..842f319 100644 --- a/mia_core/templatetags/mia_core.py +++ b/mia_core/templatetags/mia_core.py @@ -28,7 +28,6 @@ from django.utils import timezone from django.utils.safestring import SafeString from django.utils.translation import gettext -from mia_core.status import retrieve_status from mia_core.utils import UrlBuilder register = template.Library()