Skip to content

Commit ea5967a

Browse files
committed
Fix pre-commit
Signed-off-by: Ce Gao <cegao@tensorchord.ai>
1 parent 99aa883 commit ea5967a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

vllm/reasoning/deepseek_r1_reasoning_parser.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,5 +168,5 @@ def extract_reasoning_content(
168168
# It should not happen since we already checked for the presence
169169
# of the end token.
170170
# If generation stops right after end-of-think, return null content
171-
content = content or None
172-
return reasoning_content, content
171+
final_content = content or None
172+
return reasoning_content, final_content

0 commit comments

Comments
 (0)