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 779682d commit d242ec0Copy full SHA for d242ec0
twitchio/http.py
@@ -329,7 +329,7 @@ class HTTPAsyncIterator(Generic[T]):
329
streams = await bot.fetch_streams()
330
331
# Flatten and return up to 1000 results (max 100 per page) which equates to 10 requests...
332
- streams = [async for stream in bot.fetch_streams(first=100, max_results=1000)]
+ streams = [stream async for stream in bot.fetch_streams(first=100, max_results=1000)]
333
334
# Loop over results until we manually stop...
335
async for item in bot.fetch_streams(first=100, max_results=1000):
0 commit comments