Skip to content

Commit 8ac067f

Browse files
Merge branch 'webb/anthropic/separate-sync-and-async' into webb/anthropic/remove-get-current-span
2 parents dc4056a + e6eba3e commit 8ac067f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sentry_sdk/integrations/anthropic.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -602,7 +602,7 @@ def _set_output_data(
602602

603603
def _sentry_patched_create_sync(f: "Any", *args: "Any", **kwargs: "Any") -> "Any":
604604
"""
605-
Creates and manages an AI Client Span for both non-streaming and streaming calls.
605+
Creates an AI Client Span for both non-streaming and streaming calls.
606606
"""
607607
integration = kwargs.pop("integration")
608608
if integration is None:
@@ -690,7 +690,7 @@ async def _sentry_patched_create_async(
690690
f: "Any", *args: "Any", **kwargs: "Any"
691691
) -> "Any":
692692
"""
693-
Creates and manages an AI Client Span for both non-streaming and streaming calls.
693+
Creates an AI Client Span for both non-streaming and streaming calls.
694694
"""
695695
integration = kwargs.pop("integration")
696696
if integration is None:

0 commit comments

Comments
 (0)