Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
from django.urls import path
def some_view(request):
pass
urlpatterns = [
path("some-url/", some_view, name="some-view"),
]