Merge pull request #2605 from The-Archemist/Py3.10

dbserialize fix to support Python 3.10
This commit is contained in:
Griatch 2022-01-06 22:29:46 +01:00 committed by GitHub
commit 0ed22d4119

View file

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