trivial: Fix lint issues.

This commit is contained in:
tecnovert
2024-11-27 08:49:08 +02:00
parent 25cfcc7cee
commit 31ead537c9
4 changed files with 17 additions and 11 deletions

View File

@@ -172,7 +172,9 @@ class PARTInterface(BTCInterface):
elif balance_type == BalanceTypes.BLIND:
unspent = self.rpc_wallet("listunspentblind")
else:
raise ValueError(f"getUnspentsByAddr not implemented for {balance_type} type")
raise ValueError(
f"getUnspentsByAddr not implemented for {balance_type} type"
)
for u in unspent:
if u["spendable"] is not True:
continue