Skip to content

Commit

Permalink
fix: use brackets instead of commas for array query params (#116)
Browse files Browse the repository at this point in the history
  • Loading branch information
stainless-bot committed Dec 26, 2023
1 parent ddb39c8 commit bfd1bf4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/orb/_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ def __init__(
@property
@override
def qs(self) -> Querystring:
return Querystring(array_format="comma")
return Querystring(array_format="brackets")

@property
@override
Expand Down Expand Up @@ -361,7 +361,7 @@ def __init__(
@property
@override
def qs(self) -> Querystring:
return Querystring(array_format="comma")
return Querystring(array_format="brackets")

@property
@override
Expand Down

0 comments on commit bfd1bf4

Please sign in to comment.