エラー
Attrdictをimportする時に、
ImportError: cannot import name 'Mapping' from 'collections'
(/Users/***/anaconda3/lib/python3.10/collections/init.py)
Output is truncated.
解決方法:
矢印(---->)マークのあるエラー文からattrdictのファイルへアクセスして、
from collections import Mapping, MutableMapping, Sequence
importの部分の上記のcollectionsを下記のようにcollections.abcに書き換える。
from collections.abc import Mapping, MutableMapping, Sequence