From 2bf2549a31f5d5b1a27aa115a4e3c0f88bd01b07 Mon Sep 17 00:00:00 2001 From: matejcik Date: Thu, 6 Jun 2024 10:43:49 +0200 Subject: [PATCH] style(core): make newer pyrights happier --- core/src/trezor/loop.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/trezor/loop.py b/core/src/trezor/loop.py index 54f85eddeb..80ed8e160a 100644 --- a/core/src/trezor/loop.py +++ b/core/src/trezor/loop.py @@ -192,7 +192,7 @@ class Syscall: if TYPE_CHECKING: - def __await__(self) -> Generator: + def __await__(self) -> Generator[Any, Any, Any]: return self.__iter__() def handle(self, task: Task) -> None: