Skip to content
Snippets Groups Projects
Commit 3377e966 authored by Tore.Brede's avatar Tore.Brede
Browse files

GREG-25: Setting mypy to ignore some lines

parent 09fc8963
No related branches found
No related tags found
1 merge request!28GREG-25: Adding namespace versioning
Pipeline #91140 passed
......@@ -27,14 +27,14 @@ urlpatterns: List[URLResolver] = [
"schema/",
SpectacularAPIView.as_view(versioning_class=NamespaceVersioning),
name="schema",
),
), # type: ignore
path(
"schema/swagger-ui/",
SpectacularSwaggerView.as_view(
url_name="schema", versioning_class=NamespaceVersioning
),
), # type: ignore
name="swagger-ui",
),
path("health/", Health.as_view()),
path("health/", Health.as_view()), # type: ignore
path("api/v1/", include((api_urls.urlpatterns, "greg"), namespace="v1")),
]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment