mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-15 08:17:08 +08:00
reformat with black
This commit is contained in:
@@ -8,10 +8,17 @@ from typing import Any
|
||||
from django.contrib.messages.storage.base import Message
|
||||
from django.http.response import HttpResponse
|
||||
from typing import Any, List, Tuple, Union
|
||||
|
||||
class FallbackStorage(BaseStorage):
|
||||
storage_classes: Any = ...
|
||||
storages: Any = ...
|
||||
_used_storages: Any = ...
|
||||
def __init__(self, *args: Any, **kwargs: Any) -> None: ...
|
||||
def _get(self, *args: Any, **kwargs: Any) -> Union[Tuple[List[Any], bool], Tuple[List[str], bool], Tuple[List[Message], bool]]: ...
|
||||
def _store(self, messages: List[Message], response: HttpResponse, *args: Any, **kwargs: Any) -> List[Any]: ...
|
||||
def _get(
|
||||
self, *args: Any, **kwargs: Any
|
||||
) -> Union[
|
||||
Tuple[List[Any], bool], Tuple[List[str], bool], Tuple[List[Message], bool]
|
||||
]: ...
|
||||
def _store(
|
||||
self, messages: List[Message], response: HttpResponse, *args: Any, **kwargs: Any
|
||||
) -> List[Any]: ...
|
||||
|
||||
Reference in New Issue
Block a user