From ce04d9c3111da026b2b44b9882a58f098ccbc207 Mon Sep 17 00:00:00 2001 From: Mathias Aas Date: Tue, 3 Oct 2023 21:05:41 +0200 Subject: [PATCH] Fix styling --- .../management/commands/seed_scripts/recruitment_admissions.py | 2 +- backend/samfundet/models/recruitment.py | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/backend/root/management/commands/seed_scripts/recruitment_admissions.py b/backend/root/management/commands/seed_scripts/recruitment_admissions.py index ac4358ad6..aeefc1b91 100644 --- a/backend/root/management/commands/seed_scripts/recruitment_admissions.py +++ b/backend/root/management/commands/seed_scripts/recruitment_admissions.py @@ -8,7 +8,7 @@ 'admission_text': 'This is the admission text', 'applicant_priority': 0, 'recruiter_priority': 0, - 'recruiter_status': 0 + 'recruiter_status': 0, } diff --git a/backend/samfundet/models/recruitment.py b/backend/samfundet/models/recruitment.py index 40868bccf..691ae2b46 100644 --- a/backend/samfundet/models/recruitment.py +++ b/backend/samfundet/models/recruitment.py @@ -88,7 +88,7 @@ class RecruitmentPosition(models.Model): tags = models.CharField(max_length=100, help_text='Tags for the position') # TODO: Implement interviewer functionality - interviewers = models.ManyToManyField(to=User, help_text='Interviewers for the position', blank=True, related_name='interviews') + interviewers = models.ManyToManyField(to=User, help_text='Interviewers for the position', blank=True, related_name='interviewers') def __str__(self) -> str: return f'Position: {self.name_en} in {self.recruitment}' @@ -158,4 +158,3 @@ class Interview(models.Model): related_name='interviews', ) notes = models.TextField(help_text='Notes for the interview') -