Skip to content

Commit

Permalink
Fix logical error; Change all to any
Browse files Browse the repository at this point in the history
  • Loading branch information
smokestacklightnin committed Mar 31, 2024
1 parent 39d2e44 commit 99f42d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/assistants/test_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
if isinstance(assistant, type)
and issubclass(assistant, ApiAssistant)
and assistant is not ApiAssistant
and not all(issubclass(assistant, to_skip) for to_skip in EXCLUDE_ASSISTANTS)
and not any(issubclass(assistant, to_skip) for to_skip in EXCLUDE_ASSISTANTS)
]


Expand Down

0 comments on commit 99f42d3

Please sign in to comment.