diff --git a/scripts/data/client2.py b/scripts/data/client2.py index 5f47575f..f390dcbf 100644 --- a/scripts/data/client2.py +++ b/scripts/data/client2.py @@ -62,9 +62,11 @@ def job_generator(start, blocks, step, mode, strategy): # Function to process a batch def process_batch(batch_file): - print(f"Running client on blocks from {batch_file}") + print(f"Running client on: {batch_file} {type(batch_file)}") arguments_file = batch_file.replace(".json", "-arguments.json") + print(f"arguments_file: {arguments_file}") + with open(arguments_file, "w") as af: af.write(format_args(batch_file, False, False))