Skip to content

Commit 0b4d62f

Browse files
committed
revert: revert
1 parent 372a504 commit 0b4d62f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

evaluation_function/evaluation.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -648,8 +648,8 @@ def _err(msg: str) -> Result:
648648
elif 'evaluation_type' in answer_dict:
649649
eval_params_dict['evaluation_type'] = answer_dict['evaluation_type']
650650
else:
651-
# return _err("evaluation_type is required in answer object")
652-
eval_params_dict['evaluation_type'] = "isomorphism" # default to isomorphism for backward compatibility with old tests that don't specify it
651+
return _err("evaluation_type is required in answer object")
652+
# eval_params_dict['evaluation_type'] = "isomorphism" # default to isomorphism for backward compatibility with old tests that don't specify it
653653

654654
# Get graph structure flags from answer (with defaults)
655655
eval_params_dict['directed'] = ans.directed if ans.directed is not None else False

0 commit comments

Comments
 (0)