Skip to content

Commit

Permalink
Fix black formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark-Powers committed Dec 19, 2024
1 parent 8f8cb17 commit 5373f71
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion projects/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,9 @@ class Publication(models.Model):
submitted_date = models.DateField(default=timezone.now, null=True)
reviewed_date = models.DateField(default=timezone.now, null=True)
reviewed_by = models.ForeignKey(
settings.AUTH_USER_MODEL, on_delete=models.CASCADE, null=True,
settings.AUTH_USER_MODEL,
on_delete=models.CASCADE,
null=True,
)
reviewed_comment = models.TextField(null=True)

Expand Down

0 comments on commit 5373f71

Please sign in to comment.