Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update import for python 3.8+ #122

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Update import for python 3.8+
  • Loading branch information
idoo authored Nov 9, 2022
commit 6cc36d57e2b170f503fe6bb8ee9b2c775e52c05c
3 changes: 2 additions & 1 deletion principalmapper/util/case_insensitive_dict.py
Original file line number Diff line number Diff line change
@@ -31,7 +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):