Skip to content

Commit d9d17e2

Browse files
committed
Add pyright ignore for redis issue
redis/redis-py#2399
1 parent d8f6069 commit d9d17e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

griptape/drivers/memory/conversation/redis_conversation_memory_driver.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,5 +58,5 @@ def store(self, runs: list[Run], metadata: dict[str, Any]) -> None:
5858
def load(self) -> tuple[list[Run], dict[str, Any]]:
5959
memory_json = self.client.hget(self.index, self.conversation_id)
6060
if memory_json is not None:
61-
return self._from_params_dict(json.loads(memory_json))
61+
return self._from_params_dict(json.loads(memory_json)) # pyright: ignore[reportArgumentType] https://github.com/redis/redis-py/issues/2399
6262
return [], {}

0 commit comments

Comments
 (0)