mirror of
https://github.com/basicswap/basicswap.git
synced 2025-11-16 23:28:11 +01:00
trivial: Fix lint issues.
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user