Fix black linting on stable branch
This commit is contained in:
parent
0be63131ef
commit
071c16f132
|
@ -330,6 +330,5 @@ class RecentlyAdded(SessionRadio):
|
||||||
date = datetime.date.today() - datetime.timedelta(days=30)
|
date = datetime.date.today() - datetime.timedelta(days=30)
|
||||||
qs = super().get_queryset(**kwargs)
|
qs = super().get_queryset(**kwargs)
|
||||||
return qs.filter(
|
return qs.filter(
|
||||||
Q(artist__content_category="music"),
|
Q(artist__content_category="music"), Q(creation_date__gt=date),
|
||||||
Q(creation_date__gt=date),
|
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue