We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 44ca7f5 commit da7a8a9Copy full SHA for da7a8a9
1 file changed
evaluation_function/evaluation.py
@@ -615,6 +615,9 @@ def _ok() -> Result:
615
def _err(msg: str) -> Result:
616
return Result(is_correct=False, feedback_items=[("error", msg)])
617
618
+
619
+ return _err("testing error message!!")
620
621
# ── parse & validate inputs ──────────────────────────────────────────
622
623
try:
@@ -637,8 +640,6 @@ def _err(msg: str) -> Result:
637
640
f"Error: {e}"
638
641
)
639
642
- return _err(str(response))
-
643
# ── resolve graphs ───────────────────────────────────────────────────
644
# student_graph (resp.graph) is always present — the student submits a graph.
645
# ans.graph is only present for isomorphism / subgraph checks where the
0 commit comments