Skip to content

Commit 5b1038d

Browse files
style: format the code
1 parent b16ac08 commit 5b1038d

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

pre-compute/src/compute/pre_compute_args.rs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -128,10 +128,10 @@ impl PreComputeArgs {
128128
info!(
129129
"Reading datasets from index {start_index} to {iexec_bulk_slice_size} (is_dataset_required: {is_dataset_required})"
130130
);
131-
131+
132132
for i in start_index..=iexec_bulk_slice_size {
133133
info!("Processing dataset at index {i}");
134-
134+
135135
let filename = match get_env_var_or_error(
136136
TeeSessionEnvironmentVariable::IexecDatasetFilename(i),
137137
ReplicateStatusCause::PreComputeDatasetFilenameMissing(format!("dataset_{i}")),
@@ -195,7 +195,7 @@ impl PreComputeArgs {
195195
info!("Successfully loaded dataset {i} ({filename})");
196196
datasets.push(Dataset::new(url, checksum, filename, key));
197197
}
198-
198+
199199
info!("Successfully loaded {} datasets", datasets.len());
200200

201201
let input_files_nb = match get_env_var_or_error(
@@ -238,9 +238,9 @@ impl PreComputeArgs {
238238
})
239239
})
240240
.collect();
241-
241+
242242
info!("Successfully loaded {} input files", input_files.len());
243-
243+
244244
if !exit_causes.is_empty() {
245245
error!(
246246
"Encountered {} error(s) while reading pre-compute arguments",
@@ -249,7 +249,7 @@ impl PreComputeArgs {
249249
} else {
250250
info!("Successfully read all pre-compute arguments without errors");
251251
}
252-
252+
253253
(
254254
PreComputeArgs {
255255
output_dir,

0 commit comments

Comments
 (0)