mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-10 22:11:54 +08:00
Using a *type* of None for the prefix keyword argument is not going to typecheck very well, so it might be a typo here because the default value (rather than the type) is None. Signed-off-by: aszlig <aszlig@nix.build>
8 lines
186 B
Python
8 lines
186 B
Python
from typing import Any, List, Optional
|
|
|
|
from django.urls.resolvers import URLPattern
|
|
|
|
urlpatterns: Any
|
|
|
|
def staticfiles_urlpatterns(prefix: Optional[str] = ...) -> List[URLPattern]: ...
|