sbdchd / django-types

:doughnut: Type stubs for Django
MIT License
186 stars 62 forks source link

urls.resolvers.URLResolver.url_module type needs an update #248

Open psam44 opened 3 months ago

psam44 commented 3 months ago

Incorrect : https://github.com/sbdchd/django-types/blob/main/django-stubs/urls/resolvers.pyi urlconf_module: list[tuple[str, Callable[..., Any]]] | None

The correct one: https://github.com/typeddjango/django-stubs/blob/master/django-stubs/urls/resolvers.pyi @cached_property def urlconf_module(self) -> ModuleType | None | Sequence[_AnyURL]: ...