Skip to content

Commit 0baa147

Browse files
committed
Fix Ruff errors
1 parent 288473d commit 0baa147

File tree

6 files changed

+23
-35
lines changed

6 files changed

+23
-35
lines changed

{{cookiecutter.project_slug}}/config/asgi.py

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# ruff: noqa
21
"""
32
ASGI config for {{ cookiecutter.project_name }} project.
43
@@ -25,12 +24,9 @@
2524

2625
# This application object is used by any ASGI server configured to use this file.
2726
django_application = get_asgi_application()
28-
# Apply ASGI middleware here.
29-
# from helloworld.asgi import HelloWorldApplication
30-
# application = HelloWorldApplication(application)
3127

3228
# Import websocket application here, so apps from django_application are loaded first
33-
from config.websocket import websocket_application
29+
from config.websocket import websocket_application # noqa: E402
3430

3531

3632
async def application(scope, receive, send):

{{cookiecutter.project_slug}}/config/urls.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# ruff: noqa
21
from django.conf import settings
32
from django.conf.urls.static import static
43
from django.contrib import admin
@@ -77,4 +76,7 @@
7776
if "debug_toolbar" in settings.INSTALLED_APPS:
7877
import debug_toolbar
7978

80-
urlpatterns = [path("__debug__/", include(debug_toolbar.urls))] + urlpatterns
79+
urlpatterns = [
80+
path("__debug__/", include(debug_toolbar.urls)),
81+
*urlpatterns,
82+
]

{{cookiecutter.project_slug}}/config/wsgi.py

-8
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# ruff: noqa
21
"""
32
WSGI config for {{ cookiecutter.project_name }} project.
43
@@ -25,16 +24,9 @@
2524
# {{ cookiecutter.project_slug }} directory.
2625
BASE_DIR = Path(__file__).resolve(strict=True).parent.parent
2726
sys.path.append(str(BASE_DIR / "{{ cookiecutter.project_slug }}"))
28-
# We defer to a DJANGO_SETTINGS_MODULE already in the environment. This breaks
29-
# if running multiple sites in the same mod_wsgi process. To fix this, use
30-
# mod_wsgi daemon mode with each site in its own daemon process, or use
31-
# os.environ["DJANGO_SETTINGS_MODULE"] = "config.settings.production"
3227
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "config.settings.production")
3328

3429
# This application object is used by any WSGI server configured to use this
3530
# file. This includes Django's development server, if the WSGI_APPLICATION
3631
# setting points here.
3732
application = get_wsgi_application()
38-
# Apply WSGI middleware here.
39-
# from helloworld.wsgi import HelloWorldApplication
40-
# application = HelloWorldApplication(application)

{{cookiecutter.project_slug}}/docs/conf.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# ruff: noqa
1+
# ruff: noqa: ERA001, PTH100
22
# Configuration file for the Sphinx documentation builder.
33
#
44
# This file only contains a selection of the most common options. For a full
@@ -13,9 +13,10 @@
1313

1414
import os
1515
import sys
16+
1617
import django
1718

18-
if os.getenv("READTHEDOCS", default=False) == "True":
19+
if os.getenv("READTHEDOCS", default="False") == "True":
1920
sys.path.insert(0, os.path.abspath(".."))
2021
os.environ["DJANGO_READ_DOT_ENV_FILE"] = "True"
2122
os.environ["USE_DOCKER"] = "no"
@@ -32,7 +33,7 @@
3233
# -- Project information -----------------------------------------------------
3334

3435
project = "{{ cookiecutter.project_name }}"
35-
copyright = """{% now 'utc', '%Y' %}, {{ cookiecutter.author_name }}"""
36+
copyright = """{% now 'utc', '%Y' %}, {{ cookiecutter.author_name }}""" # noqa: A001
3637
author = "{{ cookiecutter.author_name }}"
3738

3839

+14-16
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,30 @@
11
#!/usr/bin/env python
2-
# ruff: noqa
2+
"""Django's command-line utility for administrative tasks."""
33
import os
44
import sys
55
from pathlib import Path
66

7-
if __name__ == "__main__":
7+
8+
def main():
9+
"""Run administrative tasks."""
810
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "config.settings.local")
911

1012
try:
1113
from django.core.management import execute_from_command_line
12-
except ImportError:
13-
# The above import may fail for some other reason. Ensure that the
14-
# issue is really that Django is missing to avoid masking other
15-
# exceptions on Python 2.
16-
try:
17-
import django
18-
except ImportError:
19-
raise ImportError(
20-
"Couldn't import Django. Are you sure it's installed and "
21-
"available on your PYTHONPATH environment variable? Did you "
22-
"forget to activate a virtual environment?"
23-
)
24-
25-
raise
14+
except ImportError as exc:
15+
raise ImportError( # noqa: TRY003
16+
"Couldn't import Django. Are you sure it's installed and " # noqa: EM101
17+
"available on your PYTHONPATH environment variable? Did you "
18+
"forget to activate a virtual environment?",
19+
) from exc
2620

2721
# This allows easy placement of apps within the interior
2822
# {{ cookiecutter.project_slug }} directory.
2923
current_path = Path(__file__).parent.resolve()
3024
sys.path.append(str(current_path / "{{ cookiecutter.project_slug }}"))
3125

3226
execute_from_command_line(sys.argv)
27+
28+
29+
if __name__ == "__main__":
30+
main()

{{cookiecutter.project_slug}}/merge_production_dotenvs_in_dotenv.py

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# ruff: noqa
21
import os
32
from collections.abc import Sequence
43
from pathlib import Path

0 commit comments

Comments
 (0)