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}"