remove deprecation warning. From Matthieu Guionnet
authorpierre <ratinaud@univ-tlse2.fr>
Thu, 28 Apr 2022 07:49:58 +0000 (09:49 +0200)
committerpierre <ratinaud@univ-tlse2.fr>
Thu, 28 Apr 2022 07:49:58 +0000 (09:49 +0200)
configparser.py
configparser_helpers.py

index d924d29..5a52260 100644 (file)
@@ -125,7 +125,7 @@ ConfigParser -- responsible for parsing a list of
 #------------------------------------
 # import des modules python
 #------------------------------------
-from collections import MutableMapping
+from collections.abc import MutableMapping
 import io
 import itertools
 import re
index 0536bf5..984b4a1 100644 (file)
@@ -5,7 +5,7 @@
 #------------------------------------
 # import des modules python
 #------------------------------------
-from collections import MutableMapping
+from collections.abc import MutableMapping
 
 
 try: