summaryrefslogtreecommitdiff
path: root/yaksh/python_stdout_evaluator.py
diff options
context:
space:
mode:
Diffstat (limited to 'yaksh/python_stdout_evaluator.py')
-rw-r--r--yaksh/python_stdout_evaluator.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/yaksh/python_stdout_evaluator.py b/yaksh/python_stdout_evaluator.py
index b967024..6606581 100644
--- a/yaksh/python_stdout_evaluator.py
+++ b/yaksh/python_stdout_evaluator.py
@@ -42,7 +42,9 @@ class PythonStdoutEvaluator(CodeEvaluator):
tb = None
if expected_output in user_answer:
success = False
- err = "Incorrect Answer: Please avoid printing the expected output directly"
+ err = ("Incorrect Answer: Please avoid "
+ "printing the expected output directly"
+ )
elif self.output_value == expected_output:
success = True
err = "Correct answer"