Skip to content

Commit 6920f30

Browse files
committed
Python: Django route handlers in different file now works
Fixed by #4514
1 parent c8441dc commit 6920f30

File tree

1 file changed

+2
-2
lines changed
  • python/ql/test/experimental/library-tests/frameworks/django-v2-v3/testapp

1 file changed

+2
-2
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from django.http import HttpRequest, HttpResponse
22

3-
def foo(request: HttpRequest): # $f-:routeHandler
3+
def foo(request: HttpRequest): # $routeHandler
44
return HttpResponse("foo")
55

6-
def bar_baz(request: HttpRequest): # $f-:routeHandler
6+
def bar_baz(request: HttpRequest): # $routeHandler
77
return HttpResponse("bar_baz")

0 commit comments

Comments
 (0)