From 0e856ec0e5a3d22ab4262a42e565049cde8c20d3 Mon Sep 17 00:00:00 2001 From: fahreddinozcan Date: Mon, 30 Sep 2024 13:48:11 +0300 Subject: [PATCH] fix: add classmethod decorator --- .../llama_index/storage/chat_store/upstash/base.py | 1 + 1 file changed, 1 insertion(+) diff --git a/llama-index-integrations/storage/chat_store/llama-index-storage-chat-store-upstash/llama_index/storage/chat_store/upstash/base.py b/llama-index-integrations/storage/chat_store/llama-index-storage-chat-store-upstash/llama_index/storage/chat_store/upstash/base.py index 413bf64e8b6a1..ab82f5449b224 100644 --- a/llama-index-integrations/storage/chat_store/llama-index-storage-chat-store-upstash/llama_index/storage/chat_store/upstash/base.py +++ b/llama-index-integrations/storage/chat_store/llama-index-storage-chat-store-upstash/llama_index/storage/chat_store/upstash/base.py @@ -63,6 +63,7 @@ def __init__( # self.ttl = ttl super().__init__(redis_client=self.redis_client, ttl=ttl) + @classmethod def class_name(self) -> str: """ Get the class name.