We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c6b43ba + 3c318cf commit a28f9c1Copy full SHA for a28f9c1
flask_restx/reqparse.py
@@ -307,7 +307,6 @@ def __schema__(self):
307
param["collectionFormat"] = "csv"
308
if self.choices:
309
param["enum"] = self.choices
310
- param["collectionFormat"] = "multi"
311
return param
312
313
tests/test_reqparse.py
@@ -943,7 +943,6 @@ def test_choices(self):
943
"type": "string",
944
"in": "query",
945
"enum": ["a", "b"],
946
- "collectionFormat": "multi",
947
}
948
]
949
0 commit comments