Skip to content

Commit e8fc8bc

Browse files
committed
Fix test by updating common types
1 parent 66233aa commit e8fc8bc

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

holochain_client/api/common/types.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1+
from typing import Tuple
2+
13
DnaHash = bytes
24
AgentPubKey = bytes
3-
CellId = [DnaHash, AgentPubKey]
5+
CellId = Tuple[DnaHash, AgentPubKey]
46
ZomeName = str
57
FunctionName = str
68
RoleName = str

0 commit comments

Comments
 (0)