mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-15 00:07:09 +08:00
* add import_all.test builder * fix errors * fix typechecking errors * fix migrations typechecking
7 lines
182 B
Python
7 lines
182 B
Python
from typing import Any
|
|
|
|
from django.core.cache.backends.base import BaseCache
|
|
|
|
class DummyCache(BaseCache):
|
|
def __init__(self, host: str, *args: Any, **kwargs: Any) -> None: ...
|