fix: run cargo fmt

This commit is contained in:
Eric Hagman
2021-10-01 13:04:56 -04:00
parent e3e4071a00
commit 014dc9d20f

View File

@@ -136,14 +136,14 @@ mod cmath {
#[pyfunction]
fn sinh(z: IntoPyComplex) -> Complex64 {
z.to_complex().sinh()
}
}
/// Return the hyperbolic cosine of z.
#[pyfunction]
fn cosh(z: IntoPyComplex) -> Complex64 {
z.to_complex().cosh()
}
/// Return the inverse hyperbolic sine of z.
#[pyfunction]
fn asinh(z: IntoPyComplex) -> Complex64 {