Fixed dbserialize. Supports Py 3.7 - 3.10

This commit is contained in:
Jake 2021-12-19 19:14:31 -07:00
parent 7f0d314e7f
commit 07dd36cd71

View file

@ -19,8 +19,8 @@ be out of sync with the database.
"""
from functools import update_wrapper
from collections import defaultdict, MutableSequence, MutableSet, MutableMapping
from collections import OrderedDict, deque
from collections import deque, OrderedDict, defaultdict
from collections.abc import MutableSequence, MutableSet, MutableMapping
try:
from pickle import dumps, loads