From 5692404a5baf14ac186a3a69d339ae36c111d8b5 Mon Sep 17 00:00:00 2001 From: Arnaud_Cayrol Date: Sun, 15 Feb 2026 21:24:38 +0100 Subject: [PATCH] cargo fmt --- src/pipeline/steps/crop_and_resize.rs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/pipeline/steps/crop_and_resize.rs b/src/pipeline/steps/crop_and_resize.rs index 71e43a7..2543e3b 100644 --- a/src/pipeline/steps/crop_and_resize.rs +++ b/src/pipeline/steps/crop_and_resize.rs @@ -73,10 +73,7 @@ impl ProcessingStep for CropAndResizeStep { let scale = output_size as f32 / cropped_size as f32; // Store scale for downstream steps (e.g. blur normalization) - ctx.set_computed( - computed_keys::CROP_SCALE, - ComputedValue::Float(scale), - ); + ctx.set_computed(computed_keys::CROP_SCALE, ComputedValue::Float(scale)); let scaled_face_rect = BoundingBox { x1: crop_result.face_rect.x1 * scale,