Skip to content

Commit

Permalink
Appeasing flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
Gorialis committed Mar 5, 2024
1 parent 6023027 commit dde677f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tests/test_executorfunc.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,11 @@ def sig(*args, **kwargs):
]
)
@pytest.mark.asyncio
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]):
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]
):
def non_executor(a: int, b: typing.Optional[int] = None, *, c: int) -> typing.Tuple[int, typing.Optional[int], int]:
return a, b, c

Expand Down

0 comments on commit dde677f

Please sign in to comment.