Skip to content

Commit

Permalink
Try #noqa even though my pre-commit hook doesn't honor it
Browse files Browse the repository at this point in the history
  • Loading branch information
abztrakt committed Dec 14, 2024
1 parent 557f9ea commit 82bc34a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scout/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
name="discover",
),
re_path(
r"^(?P<campus>[^/]+)/discover_card/(?P<discover_category>[a-zA-Z]+)/$",
r"^(?P<campus>[^/]+)/discover_card/(?P<discover_category>[a-zA-Z]+)/$", # noqa
DiscoverCardView.as_view(),
{"template_name": "scout/discover_card.html"},
name="discovercard",
Expand Down Expand Up @@ -133,7 +133,7 @@
name="hybriddiscover",
),
re_path(
r"^h/(?P<campus>[^/]+)/discover_card/(?P<discover_category>[a-zA-Z]+)/$",
r"^h/(?P<campus>[^/]+)/discover_card/(?P<discover_category>[a-zA-Z]+)/$", # noqa
DiscoverCardView.as_view(),
{"template_name": "hybridize/discover_card.html"},
name="hybriddiscovercard",
Expand Down

0 comments on commit 82bc34a

Please sign in to comment.