From 8f2cef8d815f035f56cd07b7764e89df26d36c41 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BE=9D=E7=91=AA=E8=B2=93?= Date: Wed, 12 Apr 2023 00:41:29 +0800 Subject: [PATCH] Revised the imports in the accounting.journal_entry.converters module. --- src/accounting/journal_entry/converters.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/accounting/journal_entry/converters.py b/src/accounting/journal_entry/converters.py index d1d160f..c9d2289 100644 --- a/src/accounting/journal_entry/converters.py +++ b/src/accounting/journal_entry/converters.py @@ -20,11 +20,10 @@ from datetime import date from flask import abort -from sqlalchemy.orm import selectinload from werkzeug.routing import BaseConverter from accounting import db -from accounting.models import JournalEntry, JournalEntryLineItem +from accounting.models import JournalEntry from accounting.utils.journal_entry_types import JournalEntryType