Skip to content

Commit c047ff6

Browse files
tkerseyCopilot
andcommitted
return set() instead of []
Co-authored-by: Copilot <[email protected]>
1 parent 645e2b2 commit c047ff6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/team_recommender/tests/example_6_n_generations/test_faster_with_n_generations.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def get_developer_names_from_response(response) -> set[str]:
2020
if "developers" in response:
2121
return {developer["name"] for developer in response["developers"]}
2222
else:
23-
return []
23+
return set()
2424

2525

2626
def has_expected_success_rate(results: list[bool], expected_success_rate: float) -> bool:

0 commit comments

Comments
 (0)