From f78e82954fc002112cd312af904bae5a5ab28a34 Mon Sep 17 00:00:00 2001 From: dni Date: Tue, 23 Jun 2026 07:38:27 +0200 Subject: [PATCH] format --- lnbits/core/views/blockexplorer_api.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lnbits/core/views/blockexplorer_api.py b/lnbits/core/views/blockexplorer_api.py index 7345f80be..adad0e0ac 100644 --- a/lnbits/core/views/blockexplorer_api.py +++ b/lnbits/core/views/blockexplorer_api.py @@ -135,7 +135,9 @@ async def api_tx(txid: str) -> Transaction: raise HTTPException(HTTPStatus.SERVICE_UNAVAILABLE, detail=str(e)) from e -@blockexplorer_router.get("/address/{address}", dependencies=[Depends(_check_api_access)]) +@blockexplorer_router.get( + "/address/{address}", dependencies=[Depends(_check_api_access)] +) async def api_address(address: str) -> AddressResponse: try: scripthash = scripthash_from_address(address)