Files
django-stubs/django-stubs/core/cache/backends/locmem.pyi
2019-08-24 18:35:42 +03:00

7 lines
186 B
Python

from typing import Any, Dict
from django.core.cache.backends.base import BaseCache
class LocMemCache(BaseCache):
def __init__(self, name: str, params: Dict[str, Any]) -> None: ...