Forces all from imports to appear on their own line
This commit is contained in:
parent
e2283eb920
commit
0400fed26a
7 changed files with 57 additions and 23 deletions
|
|
@ -4,10 +4,12 @@ from typing import TYPE_CHECKING
|
|||
|
||||
from django.conf import settings
|
||||
from django.conf.urls.static import static
|
||||
from django.urls import include, path
|
||||
from django.urls import include
|
||||
from django.urls import path
|
||||
|
||||
if TYPE_CHECKING:
|
||||
from django.urls.resolvers import URLPattern, URLResolver
|
||||
from django.urls.resolvers import URLPattern
|
||||
from django.urls.resolvers import URLResolver
|
||||
|
||||
urlpatterns: list[URLResolver] | list[URLPattern | URLResolver] = [ # type: ignore[assignment]
|
||||
path(route="", view=include("twitch.urls", namespace="twitch")),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue