Skip to content

Commit 63acf10

Browse files
rename function
1 parent fb12a44 commit 63acf10

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

sentry_sdk/integrations/openai.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -462,7 +462,7 @@ def _set_embeddings_input_data(
462462
_commmon_set_input_data(span, kwargs)
463463

464464

465-
def _common_set_output_data(
465+
def _set_common_output_data(
466466
span: "Span",
467467
response: "Any",
468468
kwargs: "dict[str, Any]",
@@ -727,7 +727,7 @@ def _set_completions_api_output_data(
727727
start_time: "Optional[float]" = None,
728728
finish_span: bool = True,
729729
) -> None:
730-
_common_set_output_data(
730+
_set_common_output_data(
731731
span,
732732
response,
733733
kwargs,
@@ -745,7 +745,7 @@ def _set_streaming_completions_api_output_data(
745745
start_time: "Optional[float]" = None,
746746
finish_span: bool = True,
747747
) -> None:
748-
_common_set_output_data(
748+
_set_common_output_data(
749749
span,
750750
response,
751751
kwargs,
@@ -763,7 +763,7 @@ def _set_responses_api_output_data(
763763
start_time: "Optional[float]" = None,
764764
finish_span: bool = True,
765765
) -> None:
766-
_common_set_output_data(
766+
_set_common_output_data(
767767
span,
768768
response,
769769
kwargs,
@@ -781,7 +781,7 @@ def _set_streaming_responses_api_output_data(
781781
start_time: "Optional[float]" = None,
782782
finish_span: bool = True,
783783
) -> None:
784-
_common_set_output_data(
784+
_set_common_output_data(
785785
span,
786786
response,
787787
kwargs,
@@ -799,7 +799,7 @@ def _set_embeddings_output_data(
799799
start_time: "Optional[float]" = None,
800800
finish_span: bool = True,
801801
) -> None:
802-
_common_set_output_data(
802+
_set_common_output_data(
803803
span,
804804
response,
805805
kwargs,

0 commit comments

Comments
 (0)