File tree 2 files changed +6
-2
lines changed
2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 12
12
from django .conf .urls import url
13
13
from django .core .asgi import get_asgi_application
14
14
15
+ from django_idom import IdomAsyncWebSocketConsumer # noqa: E402
16
+
15
17
from .views import HelloWorld
16
18
19
+
17
20
os .environ .setdefault ("DJANGO_SETTINGS_MODULE" , "test_app.settings" )
18
21
19
22
# Fetch ASGI application before importing dependencies that require ORM models.
20
23
http_asgi_app = get_asgi_application ()
21
24
22
- from channels .routing import ProtocolTypeRouter , URLRouter
25
+ from channels .routing import ProtocolTypeRouter , URLRouter # noqa: E402
23
26
24
- from django_idom import IdomAsyncWebSocketConsumer
25
27
26
28
application = ProtocolTypeRouter (
27
29
{
Original file line number Diff line number Diff line change 1
1
from django .test import TestCase
2
2
3
3
# Create your tests here.
4
+ class Temp (TestCase ):
5
+ pass
You can’t perform that action at this time.
0 commit comments