Skip to content

Commit 952c983

Browse files
paulzTheRealSteele
andauthored
remove incorrect dict type arguments in hallucinations test (#42)
Co-authored-by: Scott Steele <scottsteele@artium.ai>
1 parent 40ee732 commit 952c983

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/team_recommender/tests/example_4_loop_no_hallucinating/test_allocations_hallucinating.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def get_all_developer_names(skills_data) -> set[str]:
1616
}
1717

1818

19-
def get_developer_names_from_response(response: dict[str, dict[str, str]]) -> set[str]:
19+
def get_developer_names_from_response(response: dict) -> set[str]:
2020
return {developer["name"] for developer in response["developers"]}
2121

2222

0 commit comments

Comments
 (0)