From 5cb845537e05acbac54a50565c61e5451b4f263b Mon Sep 17 00:00:00 2001 From: Mathieu Benoit Date: Sun, 18 Jan 2026 00:36:47 -0500 Subject: [PATCH] FIX test: update common types with Tuple --- holochain_client/api/common/types.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/holochain_client/api/common/types.py b/holochain_client/api/common/types.py index 84afd9e..ac798ce 100644 --- a/holochain_client/api/common/types.py +++ b/holochain_client/api/common/types.py @@ -1,6 +1,8 @@ +from typing import Tuple + DnaHash = bytes AgentPubKey = bytes -CellId = [DnaHash, AgentPubKey] +CellId = Tuple[DnaHash, AgentPubKey] ZomeName = str FunctionName = str RoleName = str