mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-02 19:39:49 +09:00
fix: run cargo fmt
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user