mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-10 14:01:56 +08:00
* add import_all.test builder * fix errors * fix typechecking errors * fix migrations typechecking
9 lines
240 B
Python
9 lines
240 B
Python
from typing import Any
|
|
|
|
from django.contrib.messages.storage.base import BaseStorage
|
|
|
|
class FallbackStorage(BaseStorage):
|
|
storage_classes: Any = ...
|
|
storages: Any = ...
|
|
def __init__(self, *args: Any, **kwargs: Any) -> None: ...
|