Fix black linting on stable branch

This commit is contained in:
JuniorJPDJ 2022-02-05 12:30:01 +01:00
parent 0be63131ef
commit 071c16f132
1 changed files with 1 additions and 2 deletions

View File

@ -330,6 +330,5 @@ class RecentlyAdded(SessionRadio):
date = datetime.date.today() - datetime.timedelta(days=30)
qs = super().get_queryset(**kwargs)
return qs.filter(
Q(artist__content_category="music"),
Q(creation_date__gt=date),
Q(artist__content_category="music"), Q(creation_date__gt=date),
)