From a5e3f7a213c3c830ddff7ba6b937909b174ce0a1 Mon Sep 17 00:00:00 2001 From: robot-clickhouse Date: Wed, 23 Oct 2024 15:13:04 +0000 Subject: [PATCH] Automatic style fix --- tests/fuzz/runner.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/fuzz/runner.py b/tests/fuzz/runner.py index 62f1666e77f..63f53be3766 100644 --- a/tests/fuzz/runner.py +++ b/tests/fuzz/runner.py @@ -98,7 +98,9 @@ def run_fuzzer(fuzzer: str, timeout: int): with_fuzzer_args = "" if use_fuzzer_args: env = {"FUZZER_ARGS": f"{custom_libfuzzer_options} {libfuzzer_corpora}"} - with_fuzzer_args = f" with FUZZER_ARGS '{custom_libfuzzer_options} {libfuzzer_corpora}'" + with_fuzzer_args = ( + f" with FUZZER_ARGS '{custom_libfuzzer_options} {libfuzzer_corpora}'" + ) else: cmd_line += f" {custom_libfuzzer_options} {libfuzzer_corpora}"