amend for Mapping

This commit is contained in:
Sergey G. Brester 2021-02-08 17:25:45 +01:00 committed by sebres
parent 2b6bb2c1be
commit 42dee38ad2

View file

@ -28,7 +28,10 @@ import logging
import os
import sys
import time
from collections import Mapping
try:
from collections.abc import Mapping
except ImportError:
from collections import Mapping
try:
from collections import OrderedDict
except ImportError: