fix pylint C0209 (consider-using-f-string)

This commit is contained in:
Pavol Rusnak
2023-01-30 11:46:43 +00:00
parent 9fa3e5c6cf
commit a0cc55c5a1
5 changed files with 16 additions and 22 deletions
+1 -1
View File
@@ -113,7 +113,7 @@ class LndRestWallet(Wallet):
async with httpx.AsyncClient(verify=self.cert) as client:
# set the fee limit for the payment
lnrpcFeeLimit = dict()
lnrpcFeeLimit["fixed_msat"] = "{}".format(fee_limit_msat)
lnrpcFeeLimit["fixed_msat"] = f"{fee_limit_msat}"
r = await client.post(
url=f"{self.endpoint}/v1/channels/transactions",