We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi. Please change 6-th line in jwt.py form from collections import Mapping to
jwt.py
from collections import Mapping
try: from collections.abc import Mapping except ImportError: from collections import Mapping
And change 6-th line in jws.py from from collections import Mapping, Iterable to
jws.py
from collections import Mapping, Iterable
try: from collections.abc import Mapping, Iterable except ImportError: from collections import Mapping, Iterable
The text was updated successfully, but these errors were encountered:
yeah i appreciate to fix cause it's make problems in odoo server.
Sorry, something went wrong.
This appears to have been fixed in #316 - just needs to be included in a release.
No branches or pull requests
Hi. Please change 6-th line in
jwt.py
formfrom collections import Mapping
toAnd change 6-th line in
jws.py
fromfrom collections import Mapping, Iterable
toThe text was updated successfully, but these errors were encountered: