prettier and black stuff.

This commit is contained in:
fiatjaf
2021-03-07 19:18:02 -03:00
parent c7717a611a
commit 1630a28da0
4 changed files with 69 additions and 19 deletions
+5 -1
View File
@@ -286,7 +286,11 @@ async def create_payment(
async def update_payment_status(checking_id: str, pending: bool) -> None:
await db.execute(
"UPDATE apipayments SET pending = ? WHERE checking_id = ?", (int(pending), checking_id,),
"UPDATE apipayments SET pending = ? WHERE checking_id = ?",
(
int(pending),
checking_id,
),
)