From c2fa2e0d989f3c76822784dff860efd68a7f8d0d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Cabrero-Holgueras?= Date: Tue, 7 May 2024 17:39:42 +0200 Subject: [PATCH] fix: typo in correlation coefficient that broke the program execution --- .../correlation_coefficient.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples_and_tutorials/core_concept_single_party_compute/correlation_coefficient.py b/examples_and_tutorials/core_concept_single_party_compute/correlation_coefficient.py index 55d76297..d4f3d964 100644 --- a/examples_and_tutorials/core_concept_single_party_compute/correlation_coefficient.py +++ b/examples_and_tutorials/core_concept_single_party_compute/correlation_coefficient.py @@ -21,8 +21,8 @@ async def main(): userkey = getUserKeyFromFile(os.getenv("NILLION_USERKEY_PATH_PARTY_1")) nodekey = getNodeKeyFromFile(os.getenv("NILLION_NODEKEY_PATH_PARTY_1")) client = create_nillion_client(userkey, nodekey) - party_id = client.party_id() - user_id = client.user_id() + party_id = client.party_id + user_id = client.user_id party_0_name="Party0" party_1_name="Party1" out_party_name="OutParty"