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 <joao@crewai.com>
This commit is contained in:
Devin AI
2025-07-18 16:35:31 +00:00
parent 5896f6a119
commit 482c7e5318

View File

@@ -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)