From ea3e8ce230b3807cc74ca3e319590751e3a9bdd1 Mon Sep 17 00:00:00 2001 From: Alex Hall Date: Thu, 20 Mar 2025 13:56:11 +0200 Subject: [PATCH] lint --- Makefile | 1 + tests/test_agent_tracing.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 16ed5fe..f6b779e 100644 --- a/Makefile +++ b/Makefile @@ -5,6 +5,7 @@ sync: .PHONY: format format: uv run ruff format + uv run ruff check --fix .PHONY: lint lint: diff --git a/tests/test_agent_tracing.py b/tests/test_agent_tracing.py index 5c7173f..8318b60 100644 --- a/tests/test_agent_tracing.py +++ b/tests/test_agent_tracing.py @@ -9,7 +9,7 @@ from agents import Agent, RunConfig, Runner, trace from .fake_model import FakeModel from .test_responses import get_text_message -from .testing_processor import fetch_normalized_spans, fetch_ordered_spans, fetch_traces +from .testing_processor import fetch_normalized_spans, fetch_traces @pytest.mark.asyncio