From 520d4def799f4c38ae1e8b4ed80c6dcdf1b1859c Mon Sep 17 00:00:00 2001 From: XANTRONIX Industrial Date: Fri, 14 Mar 2025 22:03:51 -0400 Subject: [PATCH] Make follow_saturated_mixing_ratio() return Series --- lib/xmet/thermo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/xmet/thermo.py b/lib/xmet/thermo.py index f91c39a..6d1026c 100644 --- a/lib/xmet/thermo.py +++ b/lib/xmet/thermo.py @@ -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 points in descending pressure order. """ - series = dict() + series = Series() ratio = saturated_mixing_ratio(temp, pressure)