mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-11 09:08:31 +00:00
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:
@@ -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)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user