Skip to content

Commit

Permalink
Remove cross option for generator parameters (#1131)
Browse files Browse the repository at this point in the history
  • Loading branch information
ggonzr committed Mar 12, 2024
1 parent 7ab7082 commit 3a0588c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mcm/json_layer/generator_parameters.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def __init__(self, json_input=None):

def isInValid(self):
for (k,v) in self._json_base__json.items():
if len(k)>=4 and k[0:5] in ['cross','filte','match'] and v<0:
if len(k)>=4 and k[0:5] in ['filte','match'] and v<0:
return True
if 'efficiency' in k and v>1.:
return True
Expand Down

0 comments on commit 3a0588c

Please sign in to comment.