fix: reformatted with black

This commit is contained in:
2025-05-28 23:21:25 +02:00
parent 49e8a794af
commit 9d6ef9f5ff
5 changed files with 29 additions and 26 deletions

View File

@@ -6,7 +6,7 @@ from .views import (
TicketUpdateView,
HomeView,
AssignedTicketListView,
TicketDetailUpdateView
TicketDetailUpdateView,
)
urlpatterns = [
@@ -15,7 +15,7 @@ urlpatterns = [
# /ticketsystem/tickets
path("tickets", TicketListView.as_view(), name="ticket-list"),
# /ticketsystem/detail/
path('<int:pk>/', TicketDetailUpdateView.as_view(), name='detail'),
path("<int:pk>/", TicketDetailUpdateView.as_view(), name="detail"),
# /ticketsystem/new/
path("new/", TicketCreateView.as_view(), name="create"),
path("<int:pk>/modify/", TicketUpdateView.as_view(), name="modify"),