mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-07 12:44:29 +08:00
13 lines
337 B
Python
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: ...
|