Skip to content

Commit 7ba34b1

Browse files
authored
[bugfix] fix syntax warning caused by backslash (#21251)
1 parent 9499e26 commit 7ba34b1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/offline_inference/neuron_eagle.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def main():
5454
for output in outputs:
5555
prompt = output.prompt
5656
generated_text = output.outputs[0].text
57-
print(f"Prompt: {prompt!r}, \n\n\n\ Generated text: {generated_text!r}")
57+
print(f"Prompt: {prompt!r}, \n\n\n Generated text: {generated_text!r}")
5858

5959

6060
if __name__ == "__main__":

tests/v1/kv_connector/unit/test_nixl_connector.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ def test_abort_timeout_on_prefiller(monkeypatch, distributed_executor_backend):
341341
Test lifecycle of an aborted Remote Prefill request hitting the timeout.
342342
-----> P
343343
| {process request}
344-
<-\--- | {result is NOT delivered, eg proxy is down}
344+
<-/--- | {result is NOT delivered, eg proxy is down}
345345
|
346346
|
347347
| {eventually free blocks}

0 commit comments

Comments
 (0)