Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
kovacspe committed May 21, 2024
1 parent 6083380 commit 240c8fc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions competition/models.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import datetime
from typing import Iterable, Optional
from typing import Optional

from django.conf import settings
from django.contrib.sites.models import Site
Expand Down Expand Up @@ -621,11 +621,11 @@ class Vote(models.IntegerChoices):
POSITIVE = 1, 'pozitívny'


def get_solution_path(instance, filename):
def get_solution_path(instance, filename): #pylint: disable=unused-argument
return instance.get_solution_file_path()


def get_corrected_solution_path(instance, filename):
def get_corrected_solution_path(instance, filename): #pylint: disable=unused-argument
return instance.get_corrected_solution_file_path()


Expand Down

0 comments on commit 240c8fc

Please sign in to comment.