1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-25 17:09:44 +00:00

style(core): make newer pyrights happier

This commit is contained in:
matejcik 2024-06-06 10:43:49 +02:00 committed by matejcik
parent e2ece75b1d
commit 2bf2549a31

View File

@ -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: