in VS Code ImportError: cannot import name ‘Mapping’ from ‘collections’

As Mitra said above, change:

from collections import Mapping

to

from collections.abc import Mapping

Leave a Comment