1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-01-07 14:00:57 +00:00

fix: remove print

[no changelog]
This commit is contained in:
M1nd3r 2024-11-26 14:10:43 +01:00
parent 0d7080102f
commit d711fd4e08

View File

@ -43,7 +43,6 @@ class Session:
elif isinstance(resp, messages.PassphraseRequest):
if self.passphrase_callback is None:
raise Exception # TODO
print(self.passphrase_callback)
resp = self.passphrase_callback(self, resp)
elif isinstance(resp, messages.ButtonRequest):
if self.button_callback is None: