Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix lint import issue
  • Loading branch information
asherf authored May 28, 2025
commit a0f7dce7d0e2bdeafe63e01071059b465a7acc1c
2 changes: 1 addition & 1 deletion jose/jwt.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
try:
from datetime import UTC # Preferred in Python 3.13+
except ImportError:
from datetime import datetime, timedelta, timezone
from datetime import timezone
UTC = timezone.utc # Preferred in Python 3.12 and below

from jose import jws
Expand Down
Loading