From 0579a97d815ffe2686ffb835b038163990a56fa1 Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Mon, 12 Aug 2024 15:16:30 +0200 Subject: [PATCH] make black --- crud.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/crud.py b/crud.py index d0c7494..4cacf73 100644 --- a/crud.py +++ b/crud.py @@ -37,7 +37,10 @@ async def get_eightballs(wallet_ids: Union[str, list[str]]) -> list[EightBall]: async def update_eightball(eightball: EightBall) -> EightBall: await db.execute( update_query("eightball.maintable", eightball), - (*eightball.dict().values(), eightball.id,), + ( + *eightball.dict().values(), + eightball.id, + ), ) return eightball