fix query parameters bug in sample clients

This commit is contained in:
Roi Shacham
2024-01-11 15:43:51 +00:00
parent 92df62b7ac
commit 772b03050f
7 changed files with 7 additions and 7 deletions

View File

@@ -484,7 +484,7 @@ class ApiClient:
if k in collection_formats:
collection_format = collection_formats[k]
if collection_format == 'multi':
new_params.extend((k, value) for value in v)
new_params.extend((k, str(value)) for value in v)
else:
if collection_format == 'ssv':
delimiter = ' '