From fb9d7d4c95601965a0c00fe07458ea1b77a0fe69 Mon Sep 17 00:00:00 2001 From: Ruben Fiszel Date: Wed, 6 Aug 2025 23:18:09 +0000 Subject: [PATCH] fix: fix python-client f formatting error --- python-client/wmill/wmill/client.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/python-client/wmill/wmill/client.py b/python-client/wmill/wmill/client.py index 2fd58e4357..6f3334ef01 100644 --- a/python-client/wmill/wmill/client.py +++ b/python-client/wmill/wmill/client.py @@ -1531,8 +1531,7 @@ def append_to_result_stream(text: str) -> None: Args: text: text to append to the result stream """ - print(f"WM_STREAM: {text.replace(chr(10), '\\n')}") - + print("WM_STREAM: {}".format(text.replace(chr(10), '\\n'))) def stream_result(stream) -> None: """Stream to the result stream.