Skip to content

Commit

Permalink
backport cb typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ikrommyd committed Jan 31, 2025
1 parent 1a7ebdc commit 28fad3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion coffea/lookup_tools/doublecrystalball.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ def _argcheck(self, betaL, betaH, mL, mH):
"""
Shape parameter bounds are m > 1 and beta > 0.
"""
return (mL > 1) & (betaL > 0) & (mH > 1) & (betaH > 1)
return (mL > 1) & (betaL > 0) & (mH > 1) & (betaH > 0)


doublecrystalball = doublecrystalball_gen(
Expand Down

0 comments on commit 28fad3d

Please sign in to comment.