This commit is contained in:
Jesse Hills 2022-09-28 12:35:28 +13:00
parent d132780461
commit 49db2b021d
No known key found for this signature in database
GPG Key ID: BEAAE804EFD8E83A

View File

@ -4,6 +4,7 @@ from typing import (
Any,
Awaitable,
Callable,
Coroutine,
Dict,
List,
Optional,
@ -601,7 +602,7 @@ class APIClient:
address: int,
handle: int,
on_bluetooth_gatt_notify: Callable[[int, bytearray], None],
) -> Callable[[], None]:
) -> Coroutine[Any, Any, None]:
self._check_authenticated()
def on_msg(msg: message.Message) -> None: