From 240c8fc68f479b5378c184a3074c907fe8170a55 Mon Sep 17 00:00:00 2001 From: kovacspe Date: Tue, 21 May 2024 21:12:10 +0200 Subject: [PATCH] lint --- competition/models.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/competition/models.py b/competition/models.py index 24f6107..d0a49fe 100644 --- a/competition/models.py +++ b/competition/models.py @@ -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 @@ -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()