Skip to content

Commit 405fc68

Browse files
owljoayouknowone
andauthored
Update vm/src/stdlib/math.rs
Co-authored-by: Jeong YunWon <[email protected]> Co-authored-by: Jeong YunWon <[email protected]>
1 parent 6fa88ab commit 405fc68

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
@@ -145,7 +145,7 @@ fn math_pow(x: IntoPyFloat, y: IntoPyFloat, vm: &VirtualMachine) -> PyResult<f64
145145

146146
let value = x.powf(y);
147147

148-
return Ok(value);
148+
Ok(value)
149149
}
150150

151151
fn math_sqrt(value: IntoPyFloat, vm: &VirtualMachine) -> PyResult<f64> {

0 commit comments

Comments
 (0)