Files
django-stubs/django/contrib/staticfiles/handlers.pyi
Maxim Kurnikov a9f215bf64 initial commit
2018-07-29 18:12:23 +03:00

7 lines
220 B
Python

from django.core.handlers.wsgi import WSGIRequest
class StaticFilesHandler:
def file_path(self, url: str) -> str: ...
def get_response(self, request: WSGIRequest): ...
def load_middleware(self) -> None: ...