We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28402a9 commit fcc51f1Copy full SHA for fcc51f1
flask_restx/reqparse.py
@@ -1,6 +1,9 @@
1
import decimal
2
3
-from collections import Hashable
+try:
4
+ from collections.abc import Hashable
5
+except ImportError:
6
+ from collections import Hashable
7
from copy import deepcopy
8
from flask import current_app, request
9
0 commit comments