Merge "Replace deprecated import of ABCs from collections"

This commit is contained in:
Zuul 2021-07-22 07:38:16 +00:00 committed by Gerrit Code Review
commit 585f34e068

View File

@ -13,7 +13,7 @@
# under the License. # under the License.
import codecs import codecs
import collections import collections.abc
import json import json
import logging import logging
import os import os
@ -40,7 +40,7 @@ def _load_json(file_name):
return None return None
class BlockDeviceState(collections.MutableMapping): class BlockDeviceState(collections.abc.MutableMapping):
"""The global state singleton """The global state singleton
An reference to an instance of this object is saved into nodes as An reference to an instance of this object is saved into nodes as