Skip to content

Commit

Permalink
fixup!
Browse files Browse the repository at this point in the history
  • Loading branch information
dni committed Sep 19, 2024
1 parent 2525f03 commit 6baa8f0
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion crud.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ async def create_tpos(data: CreateTposData) -> Tpos:

async def get_tpos(tpos_id: str) -> Optional[Tpos]:
row = await db.fetchone("SELECT * FROM tpos.pos WHERE id = :id", {"id": tpos_id})
print(row)
return Tpos(**row) if row else None


Expand Down

0 comments on commit 6baa8f0

Please sign in to comment.