Skip to content

Commit 4a10460

Browse files
committed
Fix line length violation in streaming delta comment
Shorten comment from 81 to 71 characters to comply with E501 line length limit. The comment 'Log individual streaming delta if output logging is enabled' was shortened to 'Log streaming delta if output logging is enabled' while maintaining clarity and meaning. Signed-off-by: Adrian Garcia <adrian.garcia@inceptionai.ai>
1 parent 8c0aa78 commit 4a10460

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vllm/entrypoints/openai/serving_chat.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -825,7 +825,7 @@ async def chat_completion_stream_generator(
825825
if delta_message is None:
826826
continue
827827

828-
# Log individual streaming delta if output logging is enabled
828+
# Log streaming delta if output logging is enabled
829829
if self.enable_log_outputs and self.request_logger:
830830
delta_content = ""
831831
if delta_message.content:

0 commit comments

Comments
 (0)