Add type hints

This commit is contained in:
Edward Betts 2024-06-15 20:35:25 +01:00
parent 4c651198f3
commit 6c76610cdb

View file

@ -97,8 +97,8 @@ def find_events_during_stay(
async def time_function(
name: str,
func: typing.Callable[..., typing.Coroutine[typing.Any, typing.Any, typing.Any]],
*args,
**kwargs,
*args: typing.Any,
**kwargs: typing.Any,
) -> tuple[str, typing.Any, float, Exception | None]:
"""Time the execution of an asynchronous function."""
start_time, result, exception = time(), None, None