Skip to content

Commit

Permalink
sorted by isort (#2110)
Browse files Browse the repository at this point in the history
  • Loading branch information
jjjkkkjjj committed Aug 10, 2024
1 parent 05a869a commit 6773674
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion channels/routing.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from django.conf import settings
from django.core.exceptions import ImproperlyConfigured
from django.urls.exceptions import Resolver404
from django.urls.resolvers import RegexPattern, RoutePattern, URLResolver, URLPattern
from django.urls.resolvers import RegexPattern, RoutePattern, URLPattern, URLResolver

"""
All Routing instances inside this file are also valid ASGI applications - with
Expand Down
3 changes: 2 additions & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import pytest
import sys

import pytest
from django.conf import settings


Expand Down
2 changes: 2 additions & 0 deletions tests/test_routing.py
Original file line number Diff line number Diff line change
Expand Up @@ -307,6 +307,7 @@ async def test_url_router_nesting_by_include():
Tests that nested URLRouters is constructed by include function.
"""
import sys

from django.urls import include
from django.urls import reverse as django_reverse

Expand Down Expand Up @@ -449,6 +450,7 @@ async def test_url_router_deep_nesting_by_include():
Tests that deep nested URLRouters is constructed by include function.
"""
import sys

from django.urls import include
from django.urls import reverse as django_reverse

Expand Down

0 comments on commit 6773674

Please sign in to comment.