Skip to content

Commit

Permalink
Merge pull request #136 from ajouellette/sacc_bug_fix
Browse files Browse the repository at this point in the history
Fix bug in sacc likelihood
  • Loading branch information
joezuntz authored Aug 14, 2024
2 parents 1485d50 + fbafec9 commit 0095bd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion likelihood/sacc/sacc_like.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def build_data(self):
self.sections_for_names = {}
for name in final_names:
if self.options.has_value(f"{name}_section"):
section = options[f"{name}_section"]
section = self.options[f"{name}_section"]
elif name in default_sections:
section = default_sections[name]
else:
Expand Down

0 comments on commit 0095bd3

Please sign in to comment.