Skip to content
This repository was archived by the owner on Mar 26, 2026. It is now read-only.

Commit d446422

Browse files
committed
Make autopep8 happy
1 parent 704822b commit d446422

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

tests/system/test_grpc_streams.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,8 @@ def test_stream_stream_passing_dict(echo):
7979

8080
@pytest.mark.asyncio
8181
async def test_async_unary_stream_reader(async_echo):
82-
logging.debug('test_async_unary_stream_reader %s %s', threading.current_thread(), asyncio.get_event_loop())
82+
logging.debug('test_async_unary_stream_reader %s %s',
83+
threading.current_thread(), asyncio.get_event_loop())
8384
content = 'The hail in Wales falls mainly on the snails.'
8485
call = await async_echo.expand({
8586
'content': content,
@@ -135,6 +136,7 @@ async def test_async_stream_unary_iterable(async_echo):
135136
@pytest.mark.asyncio
136137
async def test_async_stream_unary_async_generator(async_echo):
137138
logging.debug('test_async_stream_unary_async_generator')
139+
138140
async def async_generator():
139141
yield showcase.EchoRequest(content="hello")
140142
yield showcase.EchoRequest(content="world!")
@@ -186,6 +188,7 @@ async def test_async_stream_stream_reader_writier(async_echo):
186188
@pytest.mark.asyncio
187189
async def test_async_stream_stream_async_generator(async_echo):
188190
logging.debug('test_async_stream_stream_async_generator')
191+
189192
async def async_generator():
190193
yield showcase.EchoRequest(content="hello")
191194
yield showcase.EchoRequest(content="world!")

0 commit comments

Comments
 (0)