amend for `Mapping`

pull/1833/merge
Sergey G. Brester 2021-02-08 17:25:45 +01:00 committed by sebres
parent 2b6bb2c1be
commit 42dee38ad2
1 changed files with 4 additions and 1 deletions

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: