From 85bd432a4971280db88f564bcb62addeeae52b9b Mon Sep 17 00:00:00 2001 From: Osamu Miyawaki Date: Thu, 19 Oct 2023 17:06:42 -0600 Subject: [PATCH] fix whitespace --- src/metpy/calc/thermo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/metpy/calc/thermo.py b/src/metpy/calc/thermo.py index 30dbcf0fe58..6f22e441ccf 100644 --- a/src/metpy/calc/thermo.py +++ b/src/metpy/calc/thermo.py @@ -416,7 +416,7 @@ def dt_r14(p, t, params): (mpconsts.nounit.Rd * mpconsts.nounit.Lv) - 1) * mpconsts.nounit.g * de ) frac = ( mpconsts.nounit.Rd * t / (mpconsts.nounit.g) * mpconsts.nounit.Rv * t**2 / mpconsts.nounit.Lv * - ((-a2 + np.sqrt(a2**2 - 4 * a1 * a3)) / (2 * a1) + + ((-a2 + np.sqrt(a2**2 - 4 * a1 * a3)) / (2 * a1) + mpconsts.nounit.g / (mpconsts.nounit.Rd * t)) ) return frac / p