add linters
This commit is contained in:
@@ -1,5 +1,8 @@
|
||||
"""Маршруты приложения `cv`."""
|
||||
|
||||
from django.urls import path
|
||||
from .views import ProfileView, DownloadDocxView, DownloadPdfView
|
||||
|
||||
from .views import DownloadDocxView, DownloadPdfView, ProfileView
|
||||
|
||||
app_name = "cv"
|
||||
|
||||
@@ -7,4 +10,4 @@ urlpatterns = [
|
||||
path("", ProfileView.as_view(), name="profile"),
|
||||
path("download/resume.docx", DownloadDocxView.as_view(), name="resume-docx"),
|
||||
path("download/resume.pdf", DownloadPdfView.as_view(), name="resume-pdf"),
|
||||
]
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user