Avoid deprecated import for OrderedDict

This commit is contained in:
Lance Edgar 2023-05-05 01:59:59 -05:00
parent 00e2a9fcb2
commit 7db49d80f0

View file

@ -2,7 +2,7 @@
################################################################################
#
# Rattail -- Retail Software Framework
# Copyright © 2010-2022 Lance Edgar
# Copyright © 2010-2023 Lance Edgar
#
# This file is part of Rattail.
#
@ -26,12 +26,12 @@ Wave -> Rattail ("wave cache") data import
import datetime
import decimal
from collections import OrderedDict
from gql import Client, gql
from gql.transport.requests import RequestsHTTPTransport
from rattail import importing
from rattail.util import OrderedDict
from rattail_wave import importing as rattail_wave_importing