From ab59065c0becdc8d9d372a135ed536d750b65aa3 Mon Sep 17 00:00:00 2001 From: cuom1999 Date: Thu, 2 Jul 2020 11:49:39 -0500 Subject: [PATCH] Fix CPP checker/ due to judge update --- validator_template/template.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/validator_template/template.py b/validator_template/template.py index 9fa8da0..9a6ccd7 100644 --- a/validator_template/template.py +++ b/validator_template/template.py @@ -18,7 +18,8 @@ def get_executor(files, lang, compiler_time_limit, problem_id): if not isinstance(files, list): files = [files] filenames = [os.path.join(get_problem_root(problem_id), f) for f in files] - executor = compile_with_auxiliary_files(filenames, lang, compiler_time_limit) + executor = compile_with_auxiliary_files(filenames, + compiler_time_limit=compiler_time_limit) return executor