fixup! .gitea/workflows: init test pipeline
Some checks failed
Run tests / run-tests (push) Has been cancelled

This commit is contained in:
2025-12-09 21:29:45 +09:00
parent 448ab6f6cf
commit a8b4dcb5c9

View File

@@ -154,6 +154,7 @@ def _product_owners_query(
class ProductOwnersLogEntry:
transaction: Transaction
user: User | None
products_left_to_account_for: int
def product_owners_log(
@@ -178,6 +179,7 @@ def product_owners_log(
select(
Transaction,
User,
recursive_cte.c.products_left_to_account_for,
)
.select_from(recursive_cte)
.join(
@@ -202,6 +204,7 @@ def product_owners_log(
ProductOwnersLogEntry(
transaction=row[0],
user=row[1],
products_left_to_account_for=row[2],
)
for row in result
]