From 26fceca6531d27e83abe0c5ec231780eb0f862ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BE=9D=E7=91=AA=E8=B2=93?= Date: Sat, 8 Aug 2020 10:01:34 +0800 Subject: [PATCH] Removed an unused import from the views in the accounting application. --- accounting/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/accounting/views.py b/accounting/views.py index 88dfd2d..99168b3 100644 --- a/accounting/views.py +++ b/accounting/views.py @@ -41,7 +41,7 @@ from mia_core.status import success_redirect, error_redirect from mia_core.utils import Pagination, get_multi_lingual_search, UrlBuilder, \ strip_form, new_pk, PaginationException from .models import Record, Transaction, Account -from .utils import ReportUrl, get_cash_accounts, get_ledger_accounts, \ +from .utils import get_cash_accounts, get_ledger_accounts, \ find_imbalanced, find_order_holes, fill_txn_from_post, \ sort_post_txn_records, make_txn_form_from_status, \ make_txn_form_from_model, make_txn_form_from_post, MonthlySummary, \