We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d8c773c commit ecfd57fCopy full SHA for ecfd57f
tests/test_session.py
@@ -785,6 +785,6 @@ def get_client():
785
786
first_client = clients[0]
787
for client in clients[1:]:
788
- assert (
789
- client is first_client
790
- ), "All concurrent calls should return the same instance"
+ assert client is first_client, (
+ "All concurrent calls should return the same instance"
+ )
0 commit comments