From 77ef87c882cd8aabd8d0f48f4eac506c32342613 Mon Sep 17 00:00:00 2001 From: Muflone Date: Tue, 20 Aug 2024 18:50:20 +0200 Subject: [PATCH] housekeep: code re-formatted by black for lint pipeline --- aurweb/pkgbase/util.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/aurweb/pkgbase/util.py b/aurweb/pkgbase/util.py index 7b8ed700..d3c2f35c 100644 --- a/aurweb/pkgbase/util.py +++ b/aurweb/pkgbase/util.py @@ -41,9 +41,9 @@ def make_context( context["pkgbase"] = pkgbase context["comaintainers"] = [ c.User - for c in pkgbase.comaintainers.options(joinedload(PackageComaintainer.User)).order_by( - PackageComaintainer.Priority.asc() - ).all() + for c in pkgbase.comaintainers.options(joinedload(PackageComaintainer.User)) + .order_by(PackageComaintainer.Priority.asc()) + .all() ] if is_authenticated: context["unflaggers"] = context["comaintainers"].copy()