housekeep: code re-formatted by black for lint pipeline

This commit is contained in:
Muflone 2024-08-20 18:50:20 +02:00 committed by Fabio Castelli
parent a40283cdb2
commit 77ef87c882

View file

@ -41,9 +41,9 @@ def make_context(
context["pkgbase"] = pkgbase context["pkgbase"] = pkgbase
context["comaintainers"] = [ context["comaintainers"] = [
c.User c.User
for c in pkgbase.comaintainers.options(joinedload(PackageComaintainer.User)).order_by( for c in pkgbase.comaintainers.options(joinedload(PackageComaintainer.User))
PackageComaintainer.Priority.asc() .order_by(PackageComaintainer.Priority.asc())
).all() .all()
] ]
if is_authenticated: if is_authenticated:
context["unflaggers"] = context["comaintainers"].copy() context["unflaggers"] = context["comaintainers"].copy()