Skip to content

Commit

Permalink
Update src/pineko/check.py
Browse files Browse the repository at this point in the history
  • Loading branch information
felixhekhorn authored Oct 23, 2023
1 parent e35a95f commit 7dca3a4
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/pineko/check.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,9 +153,7 @@ def is_fonll_mixed(fns, lumi):
bool
true if the fktable is a mixed FONLL DIS fktable
"""
if is_dis(lumi) and fns in ["FONLL-B", "FONLL-D"]:
return True
return False
return is_dis(lumi) and fns in ["FONLL-B", "FONLL-D"]


def is_num_fonll(fns):
Expand Down

0 comments on commit 7dca3a4

Please sign in to comment.