Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 174a182

Browse files
committedMay 7, 2024·
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

+2-2
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)
Please sign in to comment.