From 07dd36cd715f40d10d68e3b25c3c1939a015407c Mon Sep 17 00:00:00 2001 From: Jake Date: Sun, 19 Dec 2021 19:14:31 -0700 Subject: [PATCH] Fixed dbserialize. Supports Py 3.7 - 3.10 --- evennia/utils/dbserialize.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/evennia/utils/dbserialize.py b/evennia/utils/dbserialize.py index c279896706..02d6e9fa28 100644 --- a/evennia/utils/dbserialize.py +++ b/evennia/utils/dbserialize.py @@ -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