1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-02-24 05:12:02 +00:00

Fix context.py -redundant read param

This commit is contained in:
M1nd3r 2024-03-11 18:15:33 +01:00 committed by M1nd3r
parent bf362902fc
commit 0e91237a08

View File

@ -73,7 +73,7 @@ class Context:
def read_from_wire(self) -> Awaitable[Message]:
"""Read a whole message from the wire without parsing it."""
return protocol.read_message(self, self.iface, self.buffer)
return protocol.read_message(self.iface, self.buffer)
if TYPE_CHECKING: