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
commit 2c785729ee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

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