From ea2b2c54972f48ca520c1884bc82d0f5b2b34cc3 Mon Sep 17 00:00:00 2001 From: Pavel Tisnovsky Date: Mon, 1 Sep 2025 10:00:58 +0200 Subject: [PATCH] Nit: removed unacessible statement --- src/app/endpoints/streaming_query.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/app/endpoints/streaming_query.py b/src/app/endpoints/streaming_query.py index 0ae4f45f..5613dbfd 100644 --- a/src/app/endpoints/streaming_query.py +++ b/src/app/endpoints/streaming_query.py @@ -150,7 +150,6 @@ def stream_build_event(chunk: Any, chunk_id: int, metadata_map: dict) -> Iterato """ if hasattr(chunk, "error"): yield from _handle_error_event(chunk, chunk_id) - return event_type = chunk.event.payload.event_type step_type = getattr(chunk.event.payload, "step_type", None)