Skip to content

Commit

Permalink
Add trailing comma
Browse files Browse the repository at this point in the history
  • Loading branch information
Mathias-a committed Sep 25, 2023
1 parent ac6c610 commit cc5221a
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion backend/samfundet/models/recruitment.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand Down

0 comments on commit cc5221a

Please sign in to comment.