From 82eba102d7b3e1c7125e285530bf63127987eb4b Mon Sep 17 00:00:00 2001 From: Dacheng Xu Date: Sun, 3 Dec 2023 21:45:46 -0500 Subject: [PATCH] Debug for the missing argument (#118) --- alea/submitters/local.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/alea/submitters/local.py b/alea/submitters/local.py index ec31daaa..db671d7c 100644 --- a/alea/submitters/local.py +++ b/alea/submitters/local.py @@ -179,7 +179,7 @@ def submit( needed_kwargs = {**metadata["generate_values"], **needed_kwargs} # read poi and poi_expectation - poi_value, poi_expectation = self._read_poi(needed_kwargs) + poi_value, poi_expectation = self._read_poi(metadata, **needed_kwargs) # read the likelihood ratio results = toyfiles_to_numpy(output_filename_pattern)