Skip to content

Commit 36b67b7

Browse files
committed
Fix type of urlpatterns
1 parent 1d9f531 commit 36b67b7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/urls.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from __future__ import annotations
22

3-
from django.urls import path
3+
from django.urls import URLPattern
44

5-
urlpatterns: list[path] = []
5+
urlpatterns: list[URLPattern] = []

0 commit comments

Comments
 (0)