Spaces:
Running
Running
AuthorBot commited on
Commit ·
0f06ce6
1
Parent(s): 90769e9
Fix: add datetime/timezone import to tracker (preventative)
Browse files
app/services/analytics_core/tracker.py
CHANGED
|
@@ -6,6 +6,7 @@ RULE: Failures here MUST NOT affect the chat response.
|
|
| 6 |
"""
|
| 7 |
|
| 8 |
import structlog
|
|
|
|
| 9 |
from redis.asyncio import Redis
|
| 10 |
from sqlalchemy.ext.asyncio import AsyncSession
|
| 11 |
|
|
|
|
| 6 |
"""
|
| 7 |
|
| 8 |
import structlog
|
| 9 |
+
from datetime import datetime, timezone
|
| 10 |
from redis.asyncio import Redis
|
| 11 |
from sqlalchemy.ext.asyncio import AsyncSession
|
| 12 |
|