From 1468cf00512e7ddd41785f1363758f43b9e741a6 Mon Sep 17 00:00:00 2001 From: "Peter D. Gray" Date: Tue, 26 Mar 2024 10:35:07 -0400 Subject: [PATCH] api cleanup --- shared/ux.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared/ux.py b/shared/ux.py index 992445a9..d8199d5e 100644 --- a/shared/ux.py +++ b/shared/ux.py @@ -332,7 +332,7 @@ async def show_qr_codes(addrs, is_alnum, start_n): async def show_qr_code(data, is_alnum=False, msg=None): from qrs import QRDisplaySingle - o = QRDisplaySingle([data], is_alnum, sidebar=msg) + o = QRDisplaySingle([data], is_alnum, msg=msg) await o.interact_bare() async def ux_enter_bip32_index(prompt, can_cancel=False, unlimited=False):