diff options
Diffstat (limited to 'testapp/exam/evaluate_cpp_code.py')
-rw-r--r-- | testapp/exam/evaluate_cpp_code.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testapp/exam/evaluate_cpp_code.py b/testapp/exam/evaluate_cpp_code.py index ed744d1..987d041 100644 --- a/testapp/exam/evaluate_cpp_code.py +++ b/testapp/exam/evaluate_cpp_code.py @@ -14,7 +14,7 @@ from language_registry import registry class EvaluateCppCode(EvaluateCCode, EvaluateCode): """Tests the C code obtained from Code Server""" - ## Public Protocol ########## + # Public Protocol ########## def evaluate_code(self): submit_path = self.create_submit_code_file('submitstd.cpp') get_ref_path = self.ref_code_path @@ -45,4 +45,4 @@ class EvaluateCppCode(EvaluateCCode, EvaluateCode): return success, err -registry.register('cpp', EvaluateCppCode)
\ No newline at end of file +registry.register('cpp', EvaluateCppCode) |