diff --git a/apps/tasks/models.py b/apps/tasks/models.py index 3443d00..f5e608c 100644 --- a/apps/tasks/models.py +++ b/apps/tasks/models.py @@ -25,7 +25,4 @@ def __str__(self) -> str: @property def is_accessible(self) -> bool: - return self.contest.status in ( - ContestStatus.RUNNING, - ContestStatus.FINISHED, - ) + return self.contest.status in (ContestStatus.RUNNING,)