Signed-off-by: Emmy D'Anello <emmy.danello@animath.fr>
This commit is contained in:
Emmy D'Anello 2024-04-17 00:02:48 +02:00
parent 21c4d5d7f5
commit 3a0a98a331
Signed by: ynerant
GPG Key ID: 3A75C55819C8CF85
2 changed files with 2 additions and 2 deletions

View File

@ -387,7 +387,7 @@ class Pool(models.Model):
for i, line in enumerate(table):
# Create the passage
passage = await Passage.objects.acreate(
await Passage.objects.acreate(
pool=self.associated_pool,
position=i + 1,
solution_number=tds[line[0]].accepted,

View File

@ -7,7 +7,7 @@ from django.utils.translation import activate
import gspread
from gspread.utils import a1_range_to_grid_range, MergeType
from participation.models import Tournament
from ...models import Tournament
class Command(BaseCommand):