Make follow_saturated_mixing_ratio() return Series

This commit is contained in:
XANTRONIX 2025-03-14 22:03:51 -04:00
parent 45e616b39f
commit 520d4def79

View file

@ -182,7 +182,7 @@ def follow_saturated_mixing_ratio(temp: float, pressure: float, step: float=1.0)
temp and pressure level, returning a Series object depicting the data temp and pressure level, returning a Series object depicting the data
points in descending pressure order. points in descending pressure order.
""" """
series = dict() series = Series()
ratio = saturated_mixing_ratio(temp, pressure) ratio = saturated_mixing_ratio(temp, pressure)