From 54f96c3fea73a35b69fd74fe4095847eb8b8cb43 Mon Sep 17 00:00:00 2001 From: Vlad Stan Date: Fri, 4 Oct 2024 12:07:58 +0300 Subject: [PATCH] chore: code format --- lnbits/core/crud.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lnbits/core/crud.py b/lnbits/core/crud.py index 49fd7cb25..f0b488f18 100644 --- a/lnbits/core/crud.py +++ b/lnbits/core/crud.py @@ -773,7 +773,8 @@ async def update_payment_extra( row: dict = await (conn or db).fetchone( f""" - SELECT payment_hash, extra from apipayments WHERE payment_hash = :hash {amount_clause} + SELECT payment_hash, extra from apipayments + WHERE payment_hash = :hash {amount_clause} """, {"hash": payment_hash}, )