Skip to content

Commit

Permalink
remove mypy ignores
Browse files Browse the repository at this point in the history
  • Loading branch information
djbrown committed Mar 24, 2024
1 parent 53555f9 commit 3ea9e28
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions src/hbscorez/urls.py
Expand Up @@ -39,12 +39,11 @@
path('registrierung/', include('django_registration.backends.activation.urls')),
path('benutzer/', include(user_urls)),
path('sitemap.xml', sitemap, {'sitemaps': {
# https://github.com/typeddjango/django-stubs/pull/1111
'associations': GenericSitemap(ASSOCIATIONS), # type: ignore[arg-type]
'districts': GenericSitemap(DISTRICTS), # type: ignore[arg-type]
'leagues': GenericSitemap(LEAGUES), # type: ignore[arg-type]
'teams': GenericSitemap(TEAMS), # type: ignore[arg-type]
'players': GenericSitemap(PLAYERS), # type: ignore[arg-type]
'associations': GenericSitemap(ASSOCIATIONS),
'districts': GenericSitemap(DISTRICTS),
'leagues': GenericSitemap(LEAGUES),
'teams': GenericSitemap(TEAMS),
'players': GenericSitemap(PLAYERS),
}}, name='django.contrib.sitemaps.views.sitemap'),
path('', include(base_urls)),
path('verbaende/', include(association_urls)),
Expand Down

0 comments on commit 3ea9e28

Please sign in to comment.