Skip to content

Commit 4e79cec

Browse files
committed
Apply Ruff formatting
Format extraction.py to satisfy CI lint. Validation: uv run ruff check . && uv run ruff format --check .; uv run pytest tests/test_extraction.py tests/test_converter.py
1 parent 50dc51f commit 4e79cec

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

src/agentevals/extraction.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -394,10 +394,7 @@ def is_adk_scope(span: Span) -> bool:
394394

395395

396396
def is_adk_generate_content_llm_span(span: Span) -> bool:
397-
if not (
398-
span.operation_name.startswith("generate_content")
399-
or span.get_tag(OTEL_GENAI_OP) == "generate_content"
400-
):
397+
if not (span.operation_name.startswith("generate_content") or span.get_tag(OTEL_GENAI_OP) == "generate_content"):
401398
return False
402399
return bool(span.get_tag(ADK_LLM_REQUEST) or span.get_tag(ADK_LLM_RESPONSE))
403400

0 commit comments

Comments
 (0)