The AttrDict Github repo shows the project as archived.
It will break with Python 3.9 since is uses deprecated imports:
site-packages/attrdict/mixins.py:5: DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated since Python 3.3,and in 3.9 it will stop working
from collections import Mapping, MutableMapping, Sequence
Either we need to find an alternative / maintained fork or replace the use of attrdicts with proper dataclasses.
The AttrDict Github repo shows the project as archived.
It will break with Python 3.9 since is uses deprecated imports:
Either we need to find an alternative / maintained fork or replace the use of attrdicts with proper dataclasses.