mirror of
https://github.com/evennia/evennia.git
synced 2026-03-21 15:26:30 +01:00
Merge pull request #2605 from The-Archemist/Py3.10
dbserialize fix to support Python 3.10
This commit is contained in:
commit
cbc9a6573b
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue