Merge pull request #12 from Danieli4/codex/add-offline-event-management-feature-h2h41a

Fix storage helpers missing imports
This commit is contained in:
Danil Gryaznev 2025-09-30 22:22:37 -06:00 committed by GitHub
commit 5e23a1f364
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 2 deletions

View File

@ -192,7 +192,6 @@ def registration_is_open(
deadline = deadline.replace(tzinfo=timezone.utc)
if deadline and deadline < current_time:
return False
if mission.capacity is not None and participant_count >= mission.capacity:

View File

@ -2,8 +2,11 @@
from __future__ import annotations
from pathlib import Path
import base64
import mimetypes
import shutil
from pathlib import Path
import mimetypes
import base64