Skip to content

Commit 174a182

Browse files
committed
fix mypy lint error
1 parent b6621d3 commit 174a182

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/reactpy_django/http/urls.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
urlpatterns = [
88
path(
99
"web_module/<path:file>",
10-
views.web_modules_file, # type: ignore[arg-type]
10+
views.web_modules_file,
1111
name="web_modules",
1212
),
1313
path(
1414
"iframe/<str:dotted_path>",
15-
views.view_to_iframe, # type: ignore[arg-type]
15+
views.view_to_iframe,
1616
name="view_to_iframe",
1717
),
1818
]

0 commit comments

Comments
 (0)