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})

View file

@ -34,7 +34,7 @@ DEBUG = False
ALLOWED_HOSTS = ["*"]
CSRF_TRUSTED_ORIGINS = [
'https://*.leggy.dev',
"https://*.leggy.dev",
]
@ -87,9 +87,9 @@ WSGI_APPLICATION = "website.wsgi.application"
# https://docs.djangoproject.com/en/4.2/ref/settings/#databases
DATABASES = {
'default': {
'ENGINE': "django.db.backends.sqlite3",
'NAME': BASE_DIR / 'db.sqlite3',
"default": {
"ENGINE": "django.db.backends.sqlite3",
"NAME": BASE_DIR / "db.sqlite3",
}
}