Skip to content

Commit 97fae8e

Browse files
committed
Fix another pylint comment
1 parent 8bd6a1c commit 97fae8e

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

tests/test_connection.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -528,8 +528,9 @@ async def handler(request):
528528
assert exc_info.value is user_error
529529
e_context = exc_info.value.__context__
530530
assert isinstance(
531-
e_context, BaseExceptionGroup
532-
) # pylint: disable=possibly-used-before-assignment
531+
e_context,
532+
BaseExceptionGroup, # pylint: disable=possibly-used-before-assignment
533+
)
533534
assert internal_error in e_context.exceptions
534535
assert user_error_context in e_context.exceptions
535536

0 commit comments

Comments
 (0)