mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-19 10:21:14 +08:00
run black over stubs, add checking to travis
This commit is contained in:
13
django-stubs-generated/core/cache/__init__.pyi
vendored
13
django-stubs-generated/core/cache/__init__.pyi
vendored
@@ -5,28 +5,17 @@ from django.core.cache.backends.base import BaseCache as BaseCache
|
||||
|
||||
DEFAULT_CACHE_ALIAS: str
|
||||
|
||||
|
||||
class CacheHandler:
|
||||
def __init__(self) -> None: ...
|
||||
|
||||
def __getitem__(self, alias: str) -> BaseCache: ...
|
||||
|
||||
def all(self): ...
|
||||
|
||||
|
||||
class DefaultCacheProxy:
|
||||
def __getattr__(
|
||||
self, name: str
|
||||
) -> Union[Callable, Dict[str, float], OrderedDict, int]: ...
|
||||
|
||||
def __getattr__(self, name: str) -> Union[Callable, Dict[str, float], OrderedDict, int]: ...
|
||||
def __setattr__(self, name: str, value: Callable) -> None: ...
|
||||
|
||||
def __delattr__(self, name: Any): ...
|
||||
|
||||
def __contains__(self, key: str) -> bool: ...
|
||||
|
||||
def __eq__(self, other: Any): ...
|
||||
|
||||
|
||||
cache: Any
|
||||
caches: CacheHandler
|
||||
|
||||
Reference in New Issue
Block a user