We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f2d64e commit 75ca1f1Copy full SHA for 75ca1f1
django_valkey/async_cache/cache.py
@@ -1,5 +1,3 @@
1
-import contextlib
2
-
3
from valkey.asyncio.client import Valkey as AValkey
4
5
from django_valkey.base import BaseValkeyCache
django_valkey/cache.py
@@ -1,12 +1,7 @@
-import functools
-from inspect import iscoroutinefunction
-from typing import Any, Callable
from valkey import Valkey
6
7
from django_valkey.base import BaseValkeyCache, omit_exception
8
from django_valkey.client import DefaultClient
9
-from django_valkey.exceptions import ConnectionInterrupted
10
11
CONNECTION_INTERRUPTED = object()
12
0 commit comments