black formatting

This commit is contained in:
Kristjan
2020-12-31 18:50:16 +01:00
parent 128888be92
commit c082c953f3
12 changed files with 98 additions and 43 deletions
+5 -1
View File
@@ -285,7 +285,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,
),
)