aboutsummaryrefslogtreecommitdiff
path: root/tests/models/thl/test_user_streak.py
diff options
context:
space:
mode:
authorMax Nanis2026-08-18 13:14:45 -0700
committerMax Nanis2026-08-18 13:14:45 -0700
commit6b4f8d6b8700a65bdf74beb3d95c969a81464a56 (patch)
tree09c0b32c8915f4ffa5c5e02222c49cbf591f8588 /tests/models/thl/test_user_streak.py
parentc6f7ad8baaa8e0e22dfcefc763f4065faf6de507 (diff)
downloadgeneralresearch-6b4f8d6b8700a65bdf74beb3d95c969a81464a56.tar.gz
generalresearch-6b4f8d6b8700a65bdf74beb3d95c969a81464a56.zip
build ignore, py-utils replace, typing with Ruff
Diffstat (limited to 'tests/models/thl/test_user_streak.py')
-rw-r--r--tests/models/thl/test_user_streak.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/models/thl/test_user_streak.py b/tests/models/thl/test_user_streak.py
index 72efd05..0cacd3e 100644
--- a/tests/models/thl/test_user_streak.py
+++ b/tests/models/thl/test_user_streak.py
@@ -1,14 +1,14 @@
from datetime import datetime, timedelta
-from zoneinfo import ZoneInfo
import pytest
from pydantic import ValidationError
+from zoneinfo import ZoneInfo
from generalresearch.models.thl.user_streak import (
- UserStreak,
- StreakPeriod,
StreakFulfillment,
+ StreakPeriod,
StreakState,
+ UserStreak,
)