From 352df673c91a17780c1b70b3b63f4ef6a2eefc0b Mon Sep 17 00:00:00 2001 From: mosesrenegade Date: Mon, 6 Nov 2023 09:51:35 -0500 Subject: [PATCH] Update case_insensitive_dict.py There was an update to the collections library. Mapping and MutableMapping are now in collections.abc. OrderedDict remains in collections. --- principalmapper/util/case_insensitive_dict.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/principalmapper/util/case_insensitive_dict.py b/principalmapper/util/case_insensitive_dict.py index ff5ee90..f427fd3 100644 --- a/principalmapper/util/case_insensitive_dict.py +++ b/principalmapper/util/case_insensitive_dict.py @@ -31,8 +31,8 @@ # See the License for the specific language governing permissions and # limitations under the License. -from collections import Mapping, MutableMapping, OrderedDict - +from collections.abc import Mapping, MutableMapping +from collections import OrderedDict class CaseInsensitiveDict(MutableMapping): """A case-insensitive ``dict``-like object.