Skip to content

Commit 6d9ae9b

Browse files
committed
feat: disable ftso minimal condition check
1 parent 74ebe3f commit 6d9ae9b

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

observer/validation/ftso.py

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -143,14 +143,15 @@ def check_submit_2(
143143
)
144144
)
145145

146-
if minimal_condition_indices:
147-
ind = ", ".join(minimal_condition_indices)
148-
issues.append(
149-
mb.build(
150-
MessageLevel.WARNING,
151-
f"submit2 values missed minimal conditions on indices {ind}",
152-
)
153-
)
146+
# TODO:(matej) change this to a sampling array instead
147+
# if minimal_condition_indices:
148+
# ind = ", ".join(minimal_condition_indices)
149+
# issues.append(
150+
# mb.build(
151+
# MessageLevel.WARNING,
152+
# f"submit2 values missed minimal conditions on indices {ind}",
153+
# )
154+
# )
154155

155156
return issues
156157

0 commit comments

Comments
 (0)