From 0a60dadd276a3007cffd6760a316a77878ba499a Mon Sep 17 00:00:00 2001 From: "Chris (Someguy123)" Date: Mon, 2 Nov 2020 03:37:28 +0000 Subject: [PATCH] forgot to add is_adapter_async to AsyncCacheWrapper --- privex/helpers/cache/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/privex/helpers/cache/__init__.py b/privex/helpers/cache/__init__.py index 5bb0938..38311e4 100644 --- a/privex/helpers/cache/__init__.py +++ b/privex/helpers/cache/__init__.py @@ -578,6 +578,7 @@ class AsyncCacheWrapper(CacheWrapper): instance_args = [] instance_kwargs = {} + is_adapter_async: bool = True default_adapter: Union[Type[AsyncCacheAdapter], str] = settings.DEFAULT_ASYNC_CACHE_ADAPTER """The default adapter class to instantiate if :py:attr:`.cache_instance` is ``None``"""