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 25361ff commit 8276024Copy full SHA for 8276024
pontos/github/api/client.py
@@ -154,7 +154,9 @@ async def get_all(
154
next_url = _get_next_url(response)
155
156
while next_url:
157
- response = await self.get(next_url, params=params)
+ # Workaround for https://github.com/encode/httpx/issues/3433
158
+ new_params = httpx.URL(next_url).params.merge(params)
159
+ response = await self.get(next_url, params=new_params)
160
161
yield response
162
0 commit comments