mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2025-05-22 21:46:17 +03:00
Make pycode style happy
This commit is contained in:
parent
6f6a0528f4
commit
6b8a84c353
|
@ -10,7 +10,7 @@ import dependency_injector.providers as providers
|
||||||
|
|
||||||
@asyncio.coroutine
|
@asyncio.coroutine
|
||||||
def coroutine_function(arg1, arg2):
|
def coroutine_function(arg1, arg2):
|
||||||
"""Example coroutine function."""
|
"""Sample coroutine function."""
|
||||||
yield from asyncio.sleep(0.1)
|
yield from asyncio.sleep(0.1)
|
||||||
return arg1, arg2
|
return arg1, arg2
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,7 @@ import dependency_injector.providers as providers
|
||||||
|
|
||||||
|
|
||||||
async def coroutine_function(arg1, arg2):
|
async def coroutine_function(arg1, arg2):
|
||||||
"""Example coroutine function."""
|
"""Sample coroutine function."""
|
||||||
await asyncio.sleep(0.1)
|
await asyncio.sleep(0.1)
|
||||||
return arg1, arg2
|
return arg1, arg2
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user