from __future__ import absolute_import, unicode_literals from celery import shared_task from judge.dispatcher import JudgeDispatcher @shared_task def judge_task(submission_id, problem_id, is_rejudge=False): JudgeDispatcher(submission_id, problem_id, is_rejudge=is_rejudge).judge()