[CHANGE] Better regex for exclusion in pre-commit

This commit is contained in:
Peter Pfeufer
2022-09-18 08:26:22 +00:00
committed by Ariel Rin
parent a9a7e03b80
commit b34661b35d
4 changed files with 31 additions and 10 deletions

View File

@@ -34,7 +34,7 @@ class OpTimer(models.Model):
fc = models.CharField(max_length=254, default="")
post_time = models.DateTimeField(default=timezone.now)
eve_character = models.ForeignKey(EveCharacter, null=True,
on_delete=models.SET_NULL)
on_delete=models.SET_NULL)
description = models.TextField(blank=True, default="")
type = models.ForeignKey(OpTimerType, null=True, on_delete=models.SET_NULL)