python-jwt
python-jwt copied to clipboard
Fix for python 3.10 (collections interface)
Change required due to the collections interface starting with Python 3.10.
suggested patch - change this
from collections import Mapping
to this
try:
from collections.abc import Mapping
except ImportError:
from collections import Mapping
It's about another jwt lib and it was already fixed.