amend for `Mapping`

pull/1833/merge
Sergey G. Brester 4 years ago committed by sebres
parent 2b6bb2c1be
commit 42dee38ad2

@ -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:

Loading…
Cancel
Save