We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a66167 commit 9428ca3Copy full SHA for 9428ca3
1 file changed
volcenginesdkarkruntime/_qs.py
@@ -64,6 +64,10 @@ def stringify_items(
64
array_format=array_format,
65
nested_format=nested_format,
66
)
67
+ if isinstance(params, list):
68
+ return flatten(
69
+ [self._stringify_item(key, value, opts) for key, value in params]
70
+ )
71
return flatten(
72
[self._stringify_item(key, value, opts) for key, value in params.items()]
73
0 commit comments