Issues (463)

testproject/urls.py (2 issues)

1
from django.urls import include, re_path
0 ignored issues
show
The name include does not seem to exist in module django.urls.
Loading history...
The name re_path does not seem to exist in module django.urls.
Loading history...
2
3
urlpatterns = (
4
    re_path(r"^auth/", include("djoser.urls.base")),
5
    re_path(r"^auth/", include("djoser.urls.authtoken")),
6
    re_path(r"^auth/", include("djoser.urls.jwt")),
7
    re_path(r"^auth/", include("djoser.social.urls")),
8
)
9