Skip to content

Commit 4dc39aa

Browse files
committed
Fix black formatting again
1 parent 63cca30 commit 4dc39aa

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

graphql/execution/executors/asyncio.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,20 +32,23 @@ def ensure_future(coro_or_future, loop=None): # type: ignore
3232
else:
3333
raise TypeError("A Future, a coroutine or an awaitable is required")
3434

35+
3536
try:
3637
from inspect import isasyncgen # type: ignore
3738
except Exception:
3839

3940
def isasyncgen(object): # type: ignore
4041
False
4142

43+
4244
try:
4345
from .asyncio_utils import asyncgen_to_observable
4446
except Exception:
4547

4648
def asyncgen_to_observable(asyncgen, loop=None):
4749
pass
4850

51+
4952
class AsyncioExecutor(object):
5053
def __init__(self, loop=None):
5154
# type: (Optional[_UnixSelectorEventLoop]) -> None

0 commit comments

Comments
 (0)