make format everything (#743)

This commit is contained in:
calle
2022-07-16 14:23:03 +02:00
committed by GitHub
parent 69516bb751
commit f4e7d62ca3
60 changed files with 182 additions and 186 deletions
+6 -8
View File
@@ -1,22 +1,20 @@
import time
import asyncio
import time
import traceback
from http import HTTPStatus
from typing import List, Callable
from loguru import logger
from typing import Callable, List
from fastapi.exceptions import HTTPException
from loguru import logger
from lnbits.settings import WALLET
from lnbits.core.crud import (
get_payments,
get_standalone_payment,
delete_expired_invoices,
get_balance_checks,
get_payments,
get_standalone_payment,
)
from lnbits.core.services import redeem_lnurl_withdraw
from lnbits.settings import WALLET
deferred_async: List[Callable] = []