Skip to content

Commit 3a76481

Browse files
author
kratm2
committed
fix double quotes in f-string
1 parent 513e4d5 commit 3a76481

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

electrum/gui/qt/transaction_dialog.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -403,7 +403,7 @@ def on_context_menu_for_outputs(self, pos: QPoint):
403403
if addr := out.address:
404404
if self.wallet.is_mine(addr):
405405
show_list += [(_("Address Details"), lambda: self.main_window.show_address(addr, parent=self))]
406-
copy_list += [(_(f"Copy {"On Chain " if out.is_silent_payment() else ""}Address"),
406+
copy_list += [(_(f"Copy {'On Chain ' if out.is_silent_payment() else ''}Address"),
407407
lambda: self.main_window.do_copy(addr))]
408408
if out.is_silent_payment():
409409
copy_list += [(_("Copy Silent Payment Address"), lambda: self.main_window.do_copy(out.sp_addr.encoded))]

0 commit comments

Comments
 (0)