Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Jan 9, 2025
1 parent f468602 commit 55460e8
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/backend/app/db/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -624,10 +624,7 @@ async def get(
sql += " AND user_id = %(user_id)s"
params["user_id"] = user_id
sql += ";"
await cur.execute(
sql,
params
)
await cur.execute(sql, params)
return await cur.fetchall()


Expand Down

0 comments on commit 55460e8

Please sign in to comment.