Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
GitHub Actions committed Aug 22, 2024
1 parent ab0020b commit 55d65a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ def clean(self):

if self.start is None or self.end is None:
raise ValidationError("Start and end times must be set.")

overlapping_events = Hunt.objects.filter(
start__lte=self.start, end__gte=self.end
).exclude(pk=self.pk)
Expand Down

0 comments on commit 55d65a2

Please sign in to comment.