Skip to content

Commit

Permalink
fix reassign local variable '_'
Browse files Browse the repository at this point in the history
  • Loading branch information
icodeface committed Oct 16, 2023
1 parent cdb894c commit d7c7ae9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion electrum/plugins/ledger/ledger.py
Original file line number Diff line number Diff line change
Expand Up @@ -1088,7 +1088,7 @@ def sign_transaction(self, keystore: Hardware_KeyStore, tx: PartialTransaction,
)

# sign opsender
for _, (addrtype, bip32_path, wallet, wallet_hmac) in sorted(sender_wallets.items(), key=lambda y: y[1][0]):
for __, (addrtype, bip32_path, wallet, wallet_hmac) in sorted(sender_wallets.items(), key=lambda y: y[1][0]):
print("sign_sender_psbt", addrtype, bip32_path, wallet, wallet_hmac)
sender_sigs = self.client.sign_sender_psbt(psbt, bip32_path, wallet, wallet_hmac)
for odx, part_sig in sender_sigs:
Expand Down

0 comments on commit d7c7ae9

Please sign in to comment.