blob: 366cc5e2e1246ee2a1008bf22075e292f82d8e5f [file] [log] [blame]
__all__ = ["Sequence"]
try:
from collections.abc import Sequence
except ImportError:
from collections import Sequence