Skip to content

Commit dde677f

Browse files
committed
Appeasing flake8
1 parent 6023027 commit dde677f

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

tests/test_executorfunc.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,11 @@ def sig(*args, **kwargs):
3333
]
3434
)
3535
@pytest.mark.asyncio
36-
async def test_magic_executor(args: typing.Tuple[typing.Any, ...], kwargs: typing.Dict[str, typing.Any], expected_return: typing.Tuple[int, typing.Optional[int], int]):
36+
async def test_magic_executor(
37+
args: typing.Tuple[typing.Any, ...],
38+
kwargs: typing.Dict[str, typing.Any],
39+
expected_return: typing.Tuple[int, typing.Optional[int], int]
40+
):
3741
def non_executor(a: int, b: typing.Optional[int] = None, *, c: int) -> typing.Tuple[int, typing.Optional[int], int]:
3842
return a, b, c
3943

0 commit comments

Comments
 (0)