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 e88bef4 commit 8152d20Copy full SHA for 8152d20
openapi_core/schema/parameters/models.py
@@ -87,6 +87,8 @@ def get_raw_value(self, request):
87
return self.schema.default
88
89
if self.aslist and self.explode:
90
+ if hasattr(location, 'getall'):
91
+ return location.getall(self.name)
92
return location.getlist(self.name)
93
94
return location[self.name]
0 commit comments