Skip to content

Commit

Permalink
Merge pull request #59 from CoLearn-Dev/fix-57
Browse files Browse the repository at this point in the history
fix vt fallback
  • Loading branch information
stneng authored Mar 5, 2024
2 parents aeed4c9 + 19ac217 commit dd3433b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion colink/p2p_inbox.py
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ def _recv_variable_p2p(cl, key: str, sender: CL.Participant) -> bytes:
{
"addr": vt_inbox.addr,
"vt_jwt": vt_inbox.vt_jwt,
"tls_cert": list(vt_inbox.tls_cert),
"tls_cert": list(vt_inbox.tls_cert) if vt_inbox.tls_cert is not None else None,
}
)
cl.send_variable_with_remote_storage(
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

setup(
name="colink",
version="0.3.5",
version="0.3.6",
description="colink python module",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit dd3433b

Please sign in to comment.