Skip to content

Commit

Permalink
make black
Browse files Browse the repository at this point in the history
  • Loading branch information
prusnak committed Aug 12, 2024
1 parent 9915254 commit 0579a97
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion crud.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 0579a97

Please sign in to comment.