Remove unnecessary parens

This commit is contained in:
XANTRONIX 2025-03-09 15:22:10 -04:00
parent 25540d0ef7
commit bb9b2e2dbf

View file

@ -216,7 +216,7 @@ class SoundingParameters():
if gph_last is not None:
gph_delta = gph - gph_last
cape += (((t_parcel) - (t_env)) / (t_env)) * gph_delta
cape += ((t_parcel - t_env) / t_env) * gph_delta
gph_last = gph