Skip to content

Commit 1c3d743

Browse files
add missing annotation
1 parent b27dc79 commit 1c3d743

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

typetests/test_functools.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@ async def aadd(a: int, b: int) -> int:
3232
return a + b
3333

3434

35-
async def test_reduce():
35+
async def test_reduce() -> None:
3636
await functools.reduce(aadd, [1, 2, 3, 4])
3737
await functools.reduce(aadd, [1, 2, 3, 4], initial=1)

0 commit comments

Comments
 (0)