fix pylint C0209 (consider-using-f-string)
This commit is contained in:
@@ -97,7 +97,7 @@ class SparkWallet(Wallet):
|
||||
unhashed_description: Optional[bytes] = None,
|
||||
**kwargs,
|
||||
) -> InvoiceResponse:
|
||||
label = "lbs{}".format(random.random())
|
||||
label = f"lbs{random.random()}"
|
||||
checking_id = label
|
||||
|
||||
try:
|
||||
|
||||
Reference in New Issue
Block a user