Skip to content

Commit 16e573b

Browse files
committed
Fmt.
1 parent 24d4ca2 commit 16e573b

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

  • crates/processing_pyo3/src

crates/processing_pyo3/src/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1439,7 +1439,8 @@ mod mewnala {
14391439
) -> PyResult<Light> {
14401440
let graphics =
14411441
get_graphics(module)?.ok_or_else(|| PyRuntimeError::new_err("call size() first"))?;
1442-
let light = graphics.light_spot(color, intensity, range, radius, inner_angle, outer_angle)?;
1442+
let light =
1443+
graphics.light_spot(color, intensity, range, radius, inner_angle, outer_angle)?;
14431444
apply_light_transform(&light, position, look_at)?;
14441445
Ok(light)
14451446
}

0 commit comments

Comments
 (0)