Skip to content

Commit 1c5bf53

Browse files
committed
fix pylint
1 parent 5defd03 commit 1c5bf53

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_connection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -496,7 +496,7 @@ async def handler(request):
496496

497497
assert exc_info.value is user_error
498498
e_context = exc_info.value.__context__
499-
assert isinstance(e_context, BaseExceptionGroup)
499+
assert isinstance(e_context, BaseExceptionGroup) # pylint: disable=possibly-used-before-assignment
500500
assert internal_error in e_context.exceptions
501501
assert user_error_context in e_context.exceptions
502502

0 commit comments

Comments
 (0)