Skip to content

Commit c377f3d

Browse files
committedJul 20, 2021
fix style issues
1 parent 2091408 commit c377f3d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
 

‎src/django_idom/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
from .websocket_consumer import IdomAsyncWebSocketConsumer
22

3+
34
__version__ = "0.0.1"
45
__all__ = ["IdomAsyncWebSocketConsumer"]

‎tests/test_app/asgi.py

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

15-
from .views import Root
16-
1715
from django_idom import IdomAsyncWebSocketConsumer # noqa: E402
1816

17+
from .views import Root
18+
1919

2020
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "test_app.settings")
2121

@@ -25,7 +25,6 @@
2525
from channels.routing import ProtocolTypeRouter, URLRouter # noqa: E402
2626

2727

28-
2928
application = ProtocolTypeRouter(
3029
{
3130
"http": http_asgi_app,

0 commit comments

Comments
 (0)
Please sign in to comment.