Skip to content

Commit bfd1bf4

Browse files
committed
fix: use brackets instead of commas for array query params (#116)
1 parent ddb39c8 commit bfd1bf4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/orb/_client.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ def __init__(
125125
@property
126126
@override
127127
def qs(self) -> Querystring:
128-
return Querystring(array_format="comma")
128+
return Querystring(array_format="brackets")
129129

130130
@property
131131
@override
@@ -361,7 +361,7 @@ def __init__(
361361
@property
362362
@override
363363
def qs(self) -> Querystring:
364-
return Querystring(array_format="comma")
364+
return Querystring(array_format="brackets")
365365

366366
@property
367367
@override

0 commit comments

Comments
 (0)