From 223d24c57145e4dd530d6cc9fc3bd38fc824faef Mon Sep 17 00:00:00 2001 From: David A Minton Date: Tue, 6 Dec 2022 12:08:53 -0500 Subject: [PATCH] Fixed typo --- python/swiftest/swiftest/simulation_class.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/swiftest/swiftest/simulation_class.py b/python/swiftest/swiftest/simulation_class.py index 3c9105554..1bcd59ac8 100644 --- a/python/swiftest/swiftest/simulation_class.py +++ b/python/swiftest/swiftest/simulation_class.py @@ -2767,7 +2767,7 @@ def read_encounter(self): # This is needed in order to pass the param argument down to the io.process_netcdf_input function def _preprocess(ds, param): return io.process_netcdf_input(ds,param) - partial_func = partial(_precprocess, param=self.param) + partial_func = partial(_preprocess, param=self.param) self.enc = xr.open_mfdataset(enc_files,parallel=True,combine="nested", concat_dim="encounter",preprocess=partial_func)