BoburAmirov's picture
lang change
69d9940
raw
history blame
No virus
156 Bytes
__all__ = ["Mapping", "Sequence"]
try:
from collections.abc import Mapping, Sequence
except ImportError:
from collections import Mapping, Sequence