Skip to content

Commit

Permalink
fix flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
rivrxsq committed Jan 11, 2025
1 parent 19ec03f commit 65378d4
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions cinema/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,9 @@
path("actors/", ActorList.as_view(), name="actor-list"),
path("actors/<int:pk>/", ActorDetail.as_view(), name="actor-detail"),
path("cinema_halls/", CinemaHallList.as_view(), name="actor-list"),
path("cinema_halls/<int:pk>/", CinemaHallDetail.as_view(), name="actor-detail"),
] + router.urls
path(
"cinema_halls/<int:pk>/",
CinemaHallDetail.as_view(),
name="actor-detail"
),
] + router.urls

0 comments on commit 65378d4

Please sign in to comment.