Skip to content

Commit

Permalink
chore: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Antti Viitala committed Dec 18, 2023
1 parent 82ea738 commit 9855588
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion deployment/gunicorn_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
# https://docs.gunicorn.org/en/stable/configure.html#configuration-file
# https://docs.gunicorn.org/en/stable/settings.html

from gunicorn.glogging import Logger

workers = 3
max_requests = 1000
Expand Down
1 change: 1 addition & 0 deletions railway_django_stack/example_views.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
from django.http import HttpResponse

from .celery import example_task


Expand Down
2 changes: 1 addition & 1 deletion railway_django_stack/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
https://docs.djangoproject.com/en/4.2/ref/settings/
"""

from pathlib import Path
import os
from pathlib import Path

from decouple import config

Expand Down
1 change: 0 additions & 1 deletion railway_django_stack/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@

import railway_django_stack.example_views as example_views


urlpatterns = [
path("", example_views.index, name="index"),
path("healthcheck/", example_views.health_check, name="health_check"),
Expand Down

0 comments on commit 9855588

Please sign in to comment.