Fix a few styling issues for black v24

This commit is contained in:
Bruno Alla 2024-01-26 10:25:07 +00:00
parent d5c60d6867
commit 76737c9ce2
5 changed files with 7 additions and 7 deletions

View File

@ -7,6 +7,7 @@ For more information on this file, see
https://docs.djangoproject.com/en/dev/howto/deployment/asgi/
"""
import os
import sys
from pathlib import Path

View File

@ -1,6 +1,5 @@
"""
Base settings to build other settings files upon.
"""
"""Base settings to build other settings files upon."""
from pathlib import Path
import environ

View File

@ -32,7 +32,7 @@ TEMPLATES[0]["OPTIONS"]["debug"] = True # type: ignore # noqa: F405
# MEDIA
# ------------------------------------------------------------------------------
# https://docs.djangoproject.com/en/dev/ref/settings/#media-url
MEDIA_URL = 'http://media.testserver'
MEDIA_URL = "http://media.testserver"
{%- if cookiecutter.frontend_pipeline == 'Webpack' %}
# django-webpack-loader

View File

@ -13,6 +13,7 @@ middleware here, or combine a Django application with an application of another
framework.
"""
import os
import sys
from pathlib import Path

View File

@ -1,6 +1,5 @@
"""
Module for all Form Tests.
"""
"""Module for all Form Tests."""
from django.utils.translation import gettext_lazy as _
from {{ cookiecutter.project_slug }}.users.forms import UserAdminCreationForm