diff --git a/examples/django-react-site/backend/testapp/asgi.py b/examples/django-react-site/backend/testapp/asgi.py index 7d0e642..8c4ed3b 100644 --- a/examples/django-react-site/backend/testapp/asgi.py +++ b/examples/django-react-site/backend/testapp/asgi.py @@ -9,6 +9,6 @@ from django.core.asgi import get_asgi_application from mizan import wrap_asgi # Register server functions and channels before building the ASGI app -import testapp.mizan_clients # noqa: F401 +import testapp.clients # noqa: F401 application = wrap_asgi(get_asgi_application())