Avoid deprecated import for OrderedDict

This commit is contained in:
Lance Edgar 2023-05-05 01:48:39 -05:00
parent 20a587ccdd
commit 519ed0a594
10 changed files with 24 additions and 21 deletions

View file

@ -2,7 +2,7 @@
################################################################################
#
# Rattail -- Retail Software Framework
# Copyright © 2010-2021 Lance Edgar
# Copyright © 2010-2023 Lance Edgar
#
# This file is part of Rattail.
#
@ -24,12 +24,13 @@
CORE Office -> CORE Lane import
"""
from collections import OrderedDict
from corepos.db.office_op import Session as CoreOfficeSession, model as coreoffice
from corepos.db.lane_op import Session as CoreLaneSession
from rattail import importing
from rattail.importing.handlers import FromSQLAlchemyHandler, ToSQLAlchemyHandler
from rattail.util import OrderedDict
from rattail_corepos.corepos.lane.importing import op as corepos_importing