1
2
3
4
5
6
__all__ = ["Sequence"]
 
try:
    from collections.abc import Sequence
except ImportError:
    from collections import Sequence