From 482c7e53181a015d0a7494a5e2e73f08db892ae9 Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Fri, 18 Jul 2025 16:35:31 +0000 Subject: [PATCH] Fix lint error: use underscore for unused variable in test - Replace json_output with _ to indicate intentionally unused variable - Fixes F841 lint error in test_crew_output_json_reproduction_case Co-Authored-By: Jo\u00E3o --- tests/crew_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/crew_test.py b/tests/crew_test.py index 6104cd891..537279ccc 100644 --- a/tests/crew_test.py +++ b/tests/crew_test.py @@ -340,7 +340,7 @@ def test_crew_output_json_reproduction_case(): ) with pytest.raises(ValueError) as excinfo: - json_output = output.json + _ = output.json assert "No tasks found in crew output" in str(excinfo.value)