Skip to content

Commit d8df048

Browse files
committed
style: fix spelling of interruptible
1 parent bd552f6 commit d8df048

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/a2a/server/tasks/result_aggregator.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ async def consume_and_break_on_interrupt(
100100
blocking: bool = True,
101101
event_callback: Callable[[], Awaitable[None]] | None = None,
102102
) -> tuple[Task | Message | None, bool]:
103-
"""Processes the event stream until completion or an interruptable state is encountered.
103+
"""Processes the event stream until completion or an interruptible state is encountered.
104104
105105
If `blocking` is False, it returns after the first event that creates a Task or Message.
106106
If `blocking` is True, it waits for completion unless an `auth_required`
@@ -173,7 +173,7 @@ async def _continue_consuming(
173173
) -> None:
174174
"""Continues processing an event stream in a background task.
175175
176-
Used after an interruptable state (like auth_required) is encountered
176+
Used after an interruptible state (like auth_required) is encountered
177177
in the synchronous consumption flow.
178178
179179
Args:

0 commit comments

Comments
 (0)