Revised the imports in the "accounting.report.reports.utils.period_chooser" module.

This commit is contained in:
依瑪貓 2023-03-09 18:00:38 +08:00
parent 5d44ebdfd8
commit b4be1db712

View File

@ -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: