From 014dc9d20fdcc6f189dc4ef5d7fdf6d2e2a87947 Mon Sep 17 00:00:00 2001 From: Eric Hagman Date: Fri, 1 Oct 2021 13:04:56 -0400 Subject: [PATCH] fix: run cargo fmt --- stdlib/src/cmath.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stdlib/src/cmath.rs b/stdlib/src/cmath.rs index e05b8831c..726bd974e 100644 --- a/stdlib/src/cmath.rs +++ b/stdlib/src/cmath.rs @@ -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 {