Making note of a weird error in my aws instance, throwing me an error with import mapping innit.py
Think it might be because python 3.10 has a change re collections to collections.abc ?
Possible code fix might be:
try:
from collections.abc import Mapping
except ImportError:
from collections import Mapping