aboutsummaryrefslogtreecommitdiff
path: root/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py
blob: 1becc5093c5ab8e196bb9fee415e2381e7158fc3 (about) (plain)
1
2
3
4
5
6
__all__ = ["Mapping", "Sequence"]

try:
    from collections.abc import Mapping, Sequence
except ImportError:
    from collections import Mapping, Sequence