Fix deprecation on collections.MutableMapping

Python 3.10 removes the deprecated aliases to collections abstract
base clases [1].

[1] - https://bugs.python.org/issue37324

Change-Id: I16eabdce9bb6e9303df8fb3baa48e490f4afa966
This commit is contained in:
Javier Pena 2021-02-09 09:25:42 +01:00
parent d1f81cc9cd
commit d9004ec7d5
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ class ProtocolFeaturesSupportedField(base.CompositeField):
"""The select query parameter is supported"""
class LazyRegistries(collections.MutableMapping):
class LazyRegistries(collections.abc.MutableMapping):
"""Download registries on demand.
Redfish message registries can be very large. On top of that,