small change

This commit is contained in:
eclipse 2025-04-23 09:37:14 +02:00
parent 03cd3f4767
commit 93e07a57f9

View File

@ -11,8 +11,8 @@ def read():
# build ORM equivalent of SELECT statement
stmt = (
select(Text, Reihe, Textform, Sprache)
.join(Text.textform, isouter=True)
.join(Text.reihe, isouter=True)
.join(Text.textform, isouter=True)
.join(Text.sprache, isouter=True)
)
# condense result into list of dicts