From f78e5f9a14eae8381e79de2d916593599bf0f08c Mon Sep 17 00:00:00 2001 From: LuLu Zuo Date: Thu, 7 Dec 2023 11:31:30 +0800 Subject: [PATCH] fix flask8 --- .../unittests/processpool/test_line_execution_process_pool.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/promptflow/tests/executor/unittests/processpool/test_line_execution_process_pool.py b/src/promptflow/tests/executor/unittests/processpool/test_line_execution_process_pool.py index 313e130b9531..05607ed9b515 100644 --- a/src/promptflow/tests/executor/unittests/processpool/test_line_execution_process_pool.py +++ b/src/promptflow/tests/executor/unittests/processpool/test_line_execution_process_pool.py @@ -150,7 +150,8 @@ def test_spawn_mode_parallelism_in_subprocess( "estimated_worker_count_based_on_memory_usage": estimated_available_worker_count } mock_logger.info.assert_any_call( - f"Set process count to {n_process} by taking the minimum value among the factors of {factors}." + f"Set process count to {n_process} by taking the minimum value among the factors " + f"of {factors}." )