1
0
mirror of https://github.com/craigerl/aprsd.git synced 2024-09-27 07:36:40 -04:00

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

View File

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