Skip to content

Commit

Permalink
fix style check
Browse files Browse the repository at this point in the history
  • Loading branch information
ohmayr committed Sep 19, 2024
1 parent 6520bf0 commit dcbae0c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/system/test_streams.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,8 @@ async def test_async_unary_stream_reader(async_echo):

# Note: gRPC exposes `read`, REST exposes `__anext__` to read
# a chunk of response from the stream.
response_attr = '__anext__' if "rest" in str(async_echo.transport).lower() else 'read'
response_attr = '__anext__' if "rest" in str(
async_echo.transport).lower() else 'read'

# Consume the response and ensure it matches what we expect.
for ground_truth in content.split(' '):
Expand Down

0 comments on commit dcbae0c

Please sign in to comment.