From aab6bf2596476e645fdb4d6c805ded4356761c1c Mon Sep 17 00:00:00 2001 From: pbrod Date: Fri, 30 Dec 2016 00:09:21 +0100 Subject: [PATCH] pep8 --- wafo/transform/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wafo/transform/models.py b/wafo/transform/models.py index 0d0c97a..bbc82b7 100644 --- a/wafo/transform/models.py +++ b/wafo/transform/models.py @@ -353,7 +353,7 @@ class TrHermite(TrCommon2): # Find the real root of the monic polynomial A0 = (q1 - q0) ** (1. / 3.) B0 = -(q1 + q0) ** (1. / 3.) - return A0 + B0 - x0 # real root + return A0 + B0 - x0 # real root # The other complex roots are given by # x= -(A0+B0)/2+(A0-B0)*sqrt(3)/2-x0 # x=-(A0+B0)/2+(A0-B0)*sqrt(-3)/2-x0