blob: 1becc5093c5ab8e196bb9fee415e2381e7158fc3 [file] [log] [blame]
__all__ = ["Mapping", "Sequence"]
try:
from collections.abc import Mapping, Sequence
except ImportError:
from collections import Mapping, Sequence