style: format code with black

Format code with black

This commit fixes the style issues introduced in 9f79143 according to the output
from Black.

Details: None
This commit is contained in:
deepsource-autofix[bot] 2023-09-08 13:10:37 +00:00 committed by GitHub
parent 9f7914319d
commit 1360792163
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 8 deletions

View file

@ -4,10 +4,9 @@ from articles.models import Article
def article_list(request):
articles = (Article.objects.defer('body')
.filter(published=True)
.order_by("-date")
.all())
articles = (
Article.objects.defer("body").filter(published=True).order_by("-date").all()
)
return render(request, "views/articles.html", {"articles": articles})