From 4c71d5ac423fc6f51a21c59867bf182a4152034b Mon Sep 17 00:00:00 2001 From: bitkarrot <73979971+bitkarrot@users.noreply.github.com> Date: Fri, 23 Feb 2024 01:05:06 -0800 Subject: [PATCH] format file --- lnbits/wallets/zbd.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lnbits/wallets/zbd.py b/lnbits/wallets/zbd.py index 34c8ca441..46334c296 100644 --- a/lnbits/wallets/zbd.py +++ b/lnbits/wallets/zbd.py @@ -4,8 +4,8 @@ from typing import AsyncGenerator, Dict, Optional import httpx from loguru import logger -from lnbits.settings import settings from lnbits import bolt11 +from lnbits.settings import settings from .base import ( InvoiceResponse, @@ -90,7 +90,9 @@ class ZBDWallet(Wallet): payment_request = data["invoice"]["request"] return InvoiceResponse(True, checking_id, payment_request, None) - async def pay_invoice(self, bolt11_invoice: str, fee_limit_msat: int) -> PaymentResponse: + async def pay_invoice( + self, bolt11_invoice: str, fee_limit_msat: int + ) -> PaymentResponse: # https://api.zebedee.io/v0/payments r = await self.client.post( "payments",