Skip to content

Commit

Permalink
Fixed mini-bug in first()
Browse files Browse the repository at this point in the history
  • Loading branch information
NeoSecundus committed Aug 15, 2023
1 parent c927af2 commit 2bc45a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pyodb/schema/base/_sql_builders.py
Original file line number Diff line number Diff line change
Expand Up @@ -521,7 +521,7 @@ def first(self) -> Any:
return None

return Assembler.assemble_type(
self._table.base_type, self._tables, self._compile().fetchone()
self._table.base_type, self._tables, row
)


Expand Down

0 comments on commit 2bc45a8

Please sign in to comment.