Skip to content

Commit

Permalink
Black fix.
Browse files Browse the repository at this point in the history
[noissue]

Signed-off-by: James Tanner <[email protected]>
  • Loading branch information
jctanner committed Oct 24, 2024
1 parent afb221f commit 1ca96ab
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pulp_ansible/app/galaxy/v3/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,9 @@ def get_queryset(self):
qs = (
Collection.objects.annotate(
highest_version=Subquery(latest_cv_version_qs.values("version")[:1]),
latest_version_modified=Subquery(latest_cv_version_qs.values("pulp_last_updated")[:1]),
latest_version_modified=Subquery(
latest_cv_version_qs.values("pulp_last_updated")[:1]
),
)
.annotate(
deprecated=Exists(deprecated_qs),
Expand Down

0 comments on commit 1ca96ab

Please sign in to comment.