mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-12-12 17:47:08 +01:00
isort
This commit is contained in:
parent
35004f434b
commit
e236b7bf7b
1 changed files with 8 additions and 4 deletions
|
|
@ -1,13 +1,17 @@
|
||||||
from django.conf import settings
|
from django.conf import settings
|
||||||
from django.conf.urls import url, static, include
|
from django.conf.urls import include, static, url
|
||||||
from django.contrib import admin
|
from django.contrib import admin
|
||||||
from django.views.decorators.csrf import csrf_exempt
|
from django.views.decorators.csrf import csrf_exempt
|
||||||
|
from django.views.generic import RedirectView
|
||||||
from rest_framework.routers import DefaultRouter
|
from rest_framework.routers import DefaultRouter
|
||||||
|
|
||||||
from documents.views import (
|
from documents.views import (
|
||||||
FetchView, PushView,
|
CorrespondentViewSet,
|
||||||
CorrespondentViewSet, TagViewSet, DocumentViewSet, LogViewSet
|
DocumentViewSet,
|
||||||
|
FetchView,
|
||||||
|
LogViewSet,
|
||||||
|
PushView,
|
||||||
|
TagViewSet
|
||||||
)
|
)
|
||||||
from reminders.views import ReminderViewSet
|
from reminders.views import ReminderViewSet
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue