From e2a4340f2afdf6b82b9bb1f25149a8608e2334d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BE=9D=E7=91=AA=E8=B2=93?= Date: Wed, 22 Mar 2023 19:43:10 +0800 Subject: [PATCH] Revised the imports in the "accounting.option.views" module. --- src/accounting/option/views.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/accounting/option/views.py b/src/accounting/option/views.py index 77e94b9..2fe9eb8 100644 --- a/src/accounting/option/views.py +++ b/src/accounting/option/views.py @@ -23,14 +23,13 @@ from flask import Blueprint, render_template, redirect, session, request, \ flash, url_for from werkzeug.datastructures import ImmutableMultiDict -from accounting import db from accounting.locale import lazy_gettext -from accounting.option.forms import OptionForm -from accounting.option.options import Options, options from accounting.utils.cast import s from accounting.utils.flash_errors import flash_form_errors from accounting.utils.next_uri import inherit_next from accounting.utils.permission import has_permission, can_admin +from .forms import OptionForm +from .options import options bp: Blueprint = Blueprint("option", __name__) """The view blueprint for the currency management."""