Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Open
Changes from 1 commit
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: ruff format long line in merge_async_iterators
  • Loading branch information
o-love committed Apr 2, 2026
commit 7329565340522490f353bfff34bed3475b626a11
4 changes: 3 additions & 1 deletion packages/server/src/memmachine_server/common/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ async def merge_async_iterators[T](
return

done_sentinel = object()
queue: asyncio.Queue[T | object | BaseException] = asyncio.Queue(maxsize=max_queue_size)
queue: asyncio.Queue[T | object | BaseException] = asyncio.Queue(
maxsize=max_queue_size
)
done_count = 0
n = len(iterators)

Expand Down
Loading