From 0b3035626701c3abd84d3183257bfcf718181d7a Mon Sep 17 00:00:00 2001 From: zssherman Date: Wed, 29 Nov 2023 17:45:32 -0600 Subject: [PATCH] FIX: Fix for example needing to be updated. --- examples/plotting/plot_secondary_y.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/plotting/plot_secondary_y.py b/examples/plotting/plot_secondary_y.py index c0e8070a16..3f0c148c97 100644 --- a/examples/plotting/plot_secondary_y.py +++ b/examples/plotting/plot_secondary_y.py @@ -17,7 +17,7 @@ import xarray as xr # Read in the data from a MET file -ds = act.io.armfiles.read_netcdf(act.tests.EXAMPLE_MET1) +ds = act.io.arm.read_arm_netcdf(act.tests.EXAMPLE_MET1) # Plot temperature and relative humidity with RH on the right axis display = act.plotting.TimeSeriesDisplay(ds, figsize=(10, 6))