Skip to content

Commit 6773674

Browse files
author
jjjkkkjjj
committed
sorted by isort (#2110)
1 parent 05a869a commit 6773674

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

channels/routing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from django.conf import settings
55
from django.core.exceptions import ImproperlyConfigured
66
from django.urls.exceptions import Resolver404
7-
from django.urls.resolvers import RegexPattern, RoutePattern, URLResolver, URLPattern
7+
from django.urls.resolvers import RegexPattern, RoutePattern, URLPattern, URLResolver
88

99
"""
1010
All Routing instances inside this file are also valid ASGI applications - with

tests/conftest.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
import pytest
21
import sys
2+
3+
import pytest
34
from django.conf import settings
45

56

tests/test_routing.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -307,6 +307,7 @@ async def test_url_router_nesting_by_include():
307307
Tests that nested URLRouters is constructed by include function.
308308
"""
309309
import sys
310+
310311
from django.urls import include
311312
from django.urls import reverse as django_reverse
312313

@@ -449,6 +450,7 @@ async def test_url_router_deep_nesting_by_include():
449450
Tests that deep nested URLRouters is constructed by include function.
450451
"""
451452
import sys
453+
452454
from django.urls import include
453455
from django.urls import reverse as django_reverse
454456

0 commit comments

Comments
 (0)