mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2025-01-24 16:24:14 +03:00
Fixed linter for asgi.py
This commit is contained in:
parent
2ecbf7ac34
commit
041751a359
|
@ -5,6 +5,7 @@ It exposes the ASGI callable as a module-level variable named ``application``.
|
||||||
|
|
||||||
For more information on this file, see
|
For more information on this file, see
|
||||||
https://docs.djangoproject.com/en/dev/howto/deployment/asgi/
|
https://docs.djangoproject.com/en/dev/howto/deployment/asgi/
|
||||||
|
|
||||||
"""
|
"""
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
|
@ -30,8 +31,8 @@ django_application = get_asgi_application()
|
||||||
# from helloworld.asgi import HelloWorldApplication
|
# from helloworld.asgi import HelloWorldApplication
|
||||||
# application = HelloWorldApplication(application)
|
# application = HelloWorldApplication(application)
|
||||||
|
|
||||||
# Importing websocket application so that apps are loaded first
|
# Import websocket application here, so apps from django_application are loaded first
|
||||||
from .websocket import websocket_application # noqa
|
from .websocket import websocket_application # noqa isort:skip
|
||||||
|
|
||||||
|
|
||||||
async def application(scope, receive, send):
|
async def application(scope, receive, send):
|
||||||
|
|
Loading…
Reference in New Issue
Block a user