From 98d5f88a0d00f9a2cbce00c0d97f49c55b89ec49 Mon Sep 17 00:00:00 2001 From: Dario Arias Date: Tue, 10 Sep 2024 17:25:52 -0700 Subject: [PATCH] Update base.py fixing `AttributeError: module 'collections' has no attribute 'MutableMapping'` --- sjsclient/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sjsclient/base.py b/sjsclient/base.py index 7d8a733..ecd3af6 100644 --- a/sjsclient/base.py +++ b/sjsclient/base.py @@ -21,7 +21,7 @@ def _create_resource(self, data): return self.resource_class(self, data) -class Resource(collections.MutableMapping): +class Resource(collections.abc.MutableMapping): base_path = None def __init__(self, manager, attrs=None):