From 93e07a57f95c9e22d004641d95b9d6b73d6b9018 Mon Sep 17 00:00:00 2001 From: eclipse Date: Wed, 23 Apr 2025 09:37:14 +0200 Subject: [PATCH] small change --- the_works/views/text.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/the_works/views/text.py b/the_works/views/text.py index 3b6530c..dcdc680 100644 --- a/the_works/views/text.py +++ b/the_works/views/text.py @@ -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