[Core] Fix redundant None append in StepPool.forward for chunked prefill (#41049)

Signed-off-by: Anthony Su <[email protected]>
This commit is contained in:
anthonsu
2026-04-27 23:42:47 -07:00
committed by GitHub
parent ed57f77192
commit 76c9cccc36
@@ -111,7 +111,7 @@ class StepPool(AllPool):
if step_tag_id is not None:
data = data[token_id == step_tag_id]
pooled_data.append(data)
pooled_data.append(data)
return pooled_data