Skip to content

Commit

Permalink
Fix checking mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
khiemdoan committed Dec 25, 2023
1 parent 4ac5f3c commit 34311d1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion asyncer/_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
Dict,
Generic,
Optional,
Tuple,
TypeVar,
Union,
)
Expand Down Expand Up @@ -158,7 +159,7 @@ def wrapper(
soon_value: SoonValue[T] = SoonValue()

@functools.wraps(partial_f)
async def value_wrapper() -> None:
async def value_wrapper(*args: Tuple[Any]) -> None:
value = await partial_f()
soon_value._stored_value = value

Expand Down

0 comments on commit 34311d1

Please sign in to comment.