Files
django-stubs/django-stubs-generated/contrib/messages/storage/fallback.pyi
2018-11-10 17:49:18 +03:00

13 lines
337 B
Python

from typing import Any, Optional
from django.contrib.messages.storage.base import BaseStorage
class FallbackStorage(BaseStorage):
added_new: bool
request: django.core.handlers.wsgi.WSGIRequest
used: bool
storage_classes: Any = ...
storages: Any = ...
def __init__(self, *args: Any, **kwargs: Any) -> None: ...