reintroduce E203, black does not like that one

This commit is contained in:
dni ⚡
2023-04-17 08:38:12 +02:00
parent 0b596c00ca
commit 06fa6c10c1
7 changed files with 14 additions and 10 deletions
+6 -4
View File
@@ -23,10 +23,12 @@ class VoidWallet(Wallet):
raise Unsupported("")
async def status(self) -> StatusResponse:
logger.warning((
"This backend does nothing, it is here just as a placeholder, you must configure an "
"actual backend before being able to do anything useful with LNbits."
))
logger.warning(
(
"This backend does nothing, it is here just as a placeholder, you must configure an "
"actual backend before being able to do anything useful with LNbits."
)
)
return StatusResponse(None, 0)
async def pay_invoice(self, bolt11: str, fee_limit_msat: int) -> PaymentResponse: