Skip to content

Commit bc8744f

Browse files
authored
Merge pull request #2695 from tisnik/lcore-3585-added-type-hints
LCORE-3585: Added type hints
2 parents 47bbf82 + bfc8cd7 commit bc8744f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/unit/utils/test_otel_tracing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ def test_set_multiple_attributes(self, otel: Generator[Any, Any, Any]) -> None:
190190
assert attrs[SpanAttributes.LLM_USAGE_INPUT_TOKENS] == 100
191191
assert attrs[SpanAttributes.LLM_USAGE_OUTPUT_TOKENS] == 50
192192

193-
def test_set_attributes_with_list(self, otel):
193+
def test_set_attributes_with_list(self, otel: Generator[Any, Any, Any]) -> None:
194194
"""Test setting attributes with list values."""
195195
tracer, exporter = otel
196196
with tracer.start_as_current_span("test_span") as span:

0 commit comments

Comments
 (0)