Bump tooling (#11096)

* Matmair/issue10740 (#497)

* reduce noise in docker

* refactor path infos

* add more info during local frontend build

* add frontend info during release build

* Revert "Matmair/issue10740 (#497)" (#498)

This reverts commit 415c52813b.

* bum pre-commit and update to new formatting rule

* fix style
This commit is contained in:
Matthias Mair
2026-01-08 10:01:23 +11:00
committed by GitHub
parent 5448e1138f
commit 2457197446
13 changed files with 45 additions and 26 deletions
+2 -1
View File
@@ -432,7 +432,8 @@ class Order(
Makes use of the overdue_filter() method to avoid code duplication
"""
return (
self.__class__.objects.filter(pk=self.pk)
self.__class__.objects
.filter(pk=self.pk)
.filter(self.__class__.overdue_filter())
.exists()
)