Skip to content

Commit 2af22c3

Browse files
committed
linter code
1 parent fbe67be commit 2af22c3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/a2a/server/events/event_queue.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ async def clear_events(self, clear_child_queues: bool = True) -> None:
177177
If False, only clear the current queue, leaving child queues untouched.
178178
"""
179179
logger.debug('Clearing all events from EventQueue and child queues.')
180-
180+
181181
# Clear all events from the queue, even if closed
182182
cleared_count = 0
183183
async with self._lock:
@@ -203,6 +203,6 @@ async def clear_events(self, clear_child_queues: bool = True) -> None:
203203
asyncio.create_task(child.clear_events())
204204
for child in self._children
205205
]
206-
206+
207207
if child_tasks:
208208
await asyncio.gather(*child_tasks, return_exceptions=True)

0 commit comments

Comments
 (0)