Merge pull request #43 from BlackIkeEagle/collections-abc-import

also use collections.abc in simpleplugin to import MutableMapping
This commit is contained in:
warwickh
2022-03-05 16:12:22 +11:00
committed by GitHub

View File

@ -19,7 +19,8 @@ import inspect
import time import time
import hashlib import hashlib
import pickle import pickle
from collections import MutableMapping, namedtuple from collections.abc import MutableMapping
from collections import namedtuple
from copy import deepcopy from copy import deepcopy
from functools import wraps from functools import wraps
from shutil import copyfile from shutil import copyfile