Skip to content

Commit

Permalink
Fix type of urlpatterns
Browse files Browse the repository at this point in the history
  • Loading branch information
adamchainz committed Aug 22, 2022
1 parent 1d9f531 commit 36b67b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/urls.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from __future__ import annotations

from django.urls import path
from django.urls import URLPattern

urlpatterns: list[path] = []
urlpatterns: list[URLPattern] = []

0 comments on commit 36b67b7

Please sign in to comment.