Skip to content

Commit

Permalink
whoopsie that's a bool
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonLovesDoggo committed Dec 5, 2023
1 parent 329788e commit a14c3cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/views/team.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ def join(request):
@require_http_methods(["GET", "POST"])
@upcoming_hunt_required
def make(request):
hunt_ = Hunt.current_hunt()
if hunt_.allow_creation_post_start is None:
hunt_: Hunt = Hunt.current_hunt()
if not hunt_.allow_creation_post_start:
messages.error(
request,
_(
Expand Down

0 comments on commit a14c3cf

Please sign in to comment.