From d630b9a48a86b6dbdf52c37fc0b3f897c2093b7f Mon Sep 17 00:00:00 2001 From: Justin Zhang Date: Fri, 8 Dec 2023 18:16:40 -0500 Subject: [PATCH] Lint --- backend/gsr_booking/urls.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/backend/gsr_booking/urls.py b/backend/gsr_booking/urls.py index ee4eec32..8baac9d3 100644 --- a/backend/gsr_booking/urls.py +++ b/backend/gsr_booking/urls.py @@ -26,12 +26,7 @@ urlpatterns = [ path("", include(router.urls)), - path( - "locations/", - Locations.as_view(), - cache_page(Cache.MONTH)(Locations.as_view()), - name="locations", - ), + path("locations/", cache_page(Cache.MONTH)(Locations.as_view()), name="locations",), path("recent/", RecentGSRs.as_view(), name="recent-gsrs"), path("wharton/", CheckWharton.as_view(), name="is-wharton"), path("availability//", Availability.as_view(), name="availability"),