This pull request addresses a compatibility issue with Python 3.9 and above, where importing Mapping directly from collections results in an ImportError. To ensure compatibility across all supported Python versions, this change updates the import statement to fetch Mapping from collections.abc instead.
This pull request addresses a compatibility issue with Python 3.9 and above, where importing
Mapping
directly fromcollections
results in anImportError
. To ensure compatibility across all supported Python versions, this change updates the import statement to fetchMapping
fromcollections.abc
instead.