From 250f4ff1aeb0e51cac9c706b6b809e6eb79f8ce9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BE=9D=E7=91=AA=E8=B2=93?= Date: Sat, 4 Mar 2023 19:52:45 +0800 Subject: [PATCH] Revised the imports in the "accounting.report.reports" module --- src/accounting/report/reports.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/accounting/report/reports.py b/src/accounting/report/reports.py index 57a45c8..b70b251 100644 --- a/src/accounting/report/reports.py +++ b/src/accounting/report/reports.py @@ -18,6 +18,7 @@ """ import csv +import typing as t from abc import ABC, abstractmethod from io import StringIO @@ -30,11 +31,9 @@ from accounting.models import JournalEntry, Transaction, Account, Currency from accounting.utils.pagination import Pagination from accounting.utils.txn_types import TransactionType from .period import Period -from .period_choosers import PeriodChooser, \ - JournalPeriodChooser +from .period_choosers import PeriodChooser, JournalPeriodChooser from .report_chooser import ReportChooser, ReportType from .report_rows import ReportRow, JournalRow -import typing as t class JournalEntryReport(ABC):