Skip to content

Commit c31f4a0

Browse files
committed
fix flake8 errors
1 parent 3e454ec commit c31f4a0

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

tests/test_app/asgi.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,18 @@
1212
from django.conf.urls import url
1313
from django.core.asgi import get_asgi_application
1414

15+
from django_idom import IdomAsyncWebSocketConsumer # noqa: E402
16+
1517
from .views import HelloWorld
1618

19+
1720
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "test_app.settings")
1821

1922
# Fetch ASGI application before importing dependencies that require ORM models.
2023
http_asgi_app = get_asgi_application()
2124

22-
from channels.routing import ProtocolTypeRouter, URLRouter
25+
from channels.routing import ProtocolTypeRouter, URLRouter # noqa: E402
2326

24-
from django_idom import IdomAsyncWebSocketConsumer
2527

2628
application = ProtocolTypeRouter(
2729
{

tests/test_app/tests.py

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
from django.test import TestCase
22

33
# Create your tests here.
4+
class Temp(TestCase):
5+
pass

0 commit comments

Comments
 (0)