Skip to content

Commit 1e41a0b

Browse files
committed
apply cargo fmt
1 parent 405fc68 commit 1e41a0b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vm/src/stdlib/math.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ make_math_func!(math_log10, log10);
134134
fn math_pow(x: IntoPyFloat, y: IntoPyFloat, vm: &VirtualMachine) -> PyResult<f64> {
135135
let x = x.to_f64();
136136
let y = y.to_f64();
137-
137+
138138
if x < 0.0 && x.is_finite() && y.fract() != 0.0 && y.is_finite() {
139139
return Err(vm.new_value_error("math domain error".to_owned()));
140140
}

0 commit comments

Comments
 (0)