We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e158f0e commit 10a2bd0Copy full SHA for 10a2bd0
tests/test_core_sdk.py
@@ -1,7 +1,7 @@
1
import os
2
import time
3
from asyncio import gather
4
-from datetime import datetime, timezone
+from datetime import datetime, timezone, timedelta
5
from time import sleep
6
7
import pytest
@@ -275,9 +275,6 @@ def test_create_score_with_custom_timestamp():
275
langfuse.flush()
276
sleep(2)
277
278
- # Create a score with a custom timestamp (1 hour ago)
279
- from datetime import timedelta
280
-
281
custom_timestamp = datetime.now(timezone.utc) - timedelta(hours=1)
282
score_id = create_uuid()
283
langfuse.create_score(
0 commit comments