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 c74dfa3 commit f8b87f2Copy full SHA for f8b87f2
modules/openapi-generator/src/main/resources/python-pydantic-v1/api_client.mustache
@@ -584,7 +584,7 @@ class ApiClient:
584
if k in collection_formats:
585
collection_format = collection_formats[k]
586
if collection_format == 'multi':
587
- new_params.extend((k, str(value)) for value in v)
+ new_params.extend((k, quote(str(value))) for value in v)
588
else:
589
if collection_format == 'ssv':
590
delimiter = ' '
0 commit comments