Import MutableSet from colections.abc to circumvent DeprecationWarning

This commit is contained in:
Carmen Bianca Bakker 2019-04-27 12:43:06 +02:00
parent 4f48345fa2
commit c8cc3a680f
Failed to generate hash of commit

View file

@ -2,8 +2,8 @@
import itertools
from collections import ChainMap, MutableSet
from collections.abc import MutableMapping, MutableSequence
from collections import ChainMap
from collections.abc import MutableMapping, MutableSequence, MutableSet
class ChainDBDefaultType(object):