From cc5221a6629fa83c3a34645b489786cb2658295f Mon Sep 17 00:00:00 2001 From: Mathias Aas Date: Mon, 25 Sep 2023 20:44:54 +0200 Subject: [PATCH] Add trailing comma --- backend/samfundet/models/recruitment.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/backend/samfundet/models/recruitment.py b/backend/samfundet/models/recruitment.py index 1b3b29e26..38db6033c 100644 --- a/backend/samfundet/models/recruitment.py +++ b/backend/samfundet/models/recruitment.py @@ -124,7 +124,12 @@ class RecruitmentAdmission(models.Model): interview_time = models.DateTimeField(help_text='The time of the interview', null=True, blank=True) interview_location = models.CharField(max_length=100, help_text='Where the intevjuee should wait', null=True, blank=True) room = models.ForeignKey( - InterviewRoom, on_delete=models.SET_NULL, null=True, blank=True, help_text='Room where the interview is held', related_name='interviews' + InterviewRoom, + on_delete=models.SET_NULL, + null=True, + blank=True, + help_text='Room where the interview is held', + related_name='interviews', ) PRIORITY_CHOICES = [