From 981722b41c1fe9059544a36b5deb14f00536da65 Mon Sep 17 00:00:00 2001 From: Bob Halley Date: Fri, 5 Jun 2020 09:46:31 -0700 Subject: [PATCH] remove no longer needed backwards compat for collections.abc.MutableMapping --- dns/namedict.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/dns/namedict.py b/dns/namedict.py index ce51e524..4c8f9abd 100644 --- a/dns/namedict.py +++ b/dns/namedict.py @@ -27,10 +27,8 @@ """DNS name dictionary""" -try: - from collections.abc import MutableMapping -except ImportError: - from collections import MutableMapping +from collections.abc import MutableMapping + import dns.name -- 2.47.3