1
0
mirror of https://github.com/craigerl/aprsd.git synced 2026-06-01 21:54:42 -04:00

Fixed import of Mutablemapping

python 3.10 moved it to collections.abc
This commit is contained in:
2023-09-28 15:30:54 -04:00
parent 99a0f877f4
commit f79b88ec1b
+2 -1
View File
@@ -1,4 +1,5 @@
from collections import MutableMapping, OrderedDict
from collections import OrderedDict
from collections.abc import MutableMapping
import logging
import threading