Fixed import of Mutablemapping

python 3.10 moved it to collections.abc
This commit is contained in:
Hemna 2023-09-28 15:30:54 -04:00
parent 99a0f877f4
commit f79b88ec1b
1 changed files with 2 additions and 1 deletions

View File

@ -1,4 +1,5 @@
from collections import MutableMapping, OrderedDict
from collections import OrderedDict
from collections.abc import MutableMapping
import logging
import threading