Skip to content

Commit 2209a80

Browse files
committed
fix(llma): run ruff
1 parent 7d5e35e commit 2209a80

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

posthog/test/ai/anthropic/test_anthropic.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -484,7 +484,7 @@ async def mock_async_stream():
484484
# This matches the actual behavior when stream=True with await
485485
async def async_create_wrapper(**kwargs):
486486
return mock_async_stream()
487-
487+
488488
with patch(
489489
"anthropic.resources.messages.AsyncMessages.create",
490490
side_effect=async_create_wrapper,
@@ -933,7 +933,7 @@ async def mock_async_generator():
933933
# Convert regular generator to async generator
934934
for event in mock_anthropic_stream_with_tools:
935935
yield event
936-
936+
937937
async def mock_async_create(**kwargs):
938938
# Return the async generator (to be awaited by the implementation)
939939
return mock_async_generator()

0 commit comments

Comments
 (0)