From 360f21f21fe4475ac32feeff4fd76e97f5139fc4 Mon Sep 17 00:00:00 2001 From: M1nd3r Date: Tue, 22 Apr 2025 11:23:11 +0200 Subject: [PATCH] fix(python): make ping work on uninitialized device --- python/src/trezorlib/cli/trezorctl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/src/trezorlib/cli/trezorctl.py b/python/src/trezorlib/cli/trezorctl.py index 9af8e97299..2a4326214e 100755 --- a/python/src/trezorlib/cli/trezorctl.py +++ b/python/src/trezorlib/cli/trezorctl.py @@ -322,7 +322,7 @@ def version() -> str: @cli.command() @click.argument("message") @click.option("-b", "--button-protection", is_flag=True) -@with_session(empty_passphrase=True) +@with_session(seedless=True) def ping(session: "Session", message: str, button_protection: bool) -> str: """Send ping message.""" return session.ping(message, button_protection)