mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-15 16:27:09 +08:00
7 lines
186 B
Python
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: ...
|