From b4be1db712483913490baf123d3af896ce58f303 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BE=9D=E7=91=AA=E8=B2=93?= Date: Thu, 9 Mar 2023 18:00:38 +0800 Subject: [PATCH] Revised the imports in the "accounting.report.reports.utils.period_chooser" module. --- src/accounting/report/reports/utils/period_choosers.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/accounting/report/reports/utils/period_choosers.py b/src/accounting/report/reports/utils/period_choosers.py index 8892127..506a459 100644 --- a/src/accounting/report/reports/utils/period_choosers.py +++ b/src/accounting/report/reports/utils/period_choosers.py @@ -24,9 +24,9 @@ import typing as t from datetime import date from accounting.models import Transaction -from accounting.report.period import YearPeriod, Period, ThisMonth, \ - LastMonth, SinceLastMonth, ThisYear, LastYear, Today, Yesterday, AllTime, \ - TemplatePeriod +from accounting.report.period import Period, ThisMonth, LastMonth, \ + SinceLastMonth, ThisYear, LastYear, Today, Yesterday, AllTime, \ + TemplatePeriod, YearPeriod class PeriodChooser: