diff --git a/django-stubs/contrib/staticfiles/storage.pyi b/django-stubs/contrib/staticfiles/storage.pyi index 9700cff..f9bc401 100644 --- a/django-stubs/contrib/staticfiles/storage.pyi +++ b/django-stubs/contrib/staticfiles/storage.pyi @@ -19,6 +19,7 @@ class HashedFilesMixin: def __init__(self, *args: Any, **kwargs: Any) -> None: ... def file_hash(self, name: str, content: File = ...) -> str: ... def hashed_name(self, name: str, content: Optional[File] = ..., filename: Optional[str] = ...) -> str: ... + def url(self, name: Optional[str], force: bool = ...) -> str: ... def url_converter(self, name: str, hashed_files: OrderedDict, template: str = ...) -> Callable: ... def post_process( self, paths: OrderedDict, dry_run: bool = ..., **options: Any