Files
django-stubs/django-stubs/core/cache/backends/filebased.pyi
Maxim Kurnikov 5c6be7ad12 Add test to import all modules to check validity of stubs (#56)
* add import_all.test builder

* fix errors

* fix typechecking errors

* fix migrations typechecking
2019-03-25 01:57:34 +03:00

8 lines
216 B
Python

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