Skip to content

Commit

Permalink
check with local black - no line limit
Browse files Browse the repository at this point in the history
Signed-off-by: Jason Sherman <tools@usingtechnolo.gy>
  • Loading branch information
usingtechnology committed May 12, 2023
1 parent bd7473f commit 7b64900
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 7 deletions.
14 changes: 10 additions & 4 deletions demo/playground/scripts/mediator_ping_agents.py
Original file line number Diff line number Diff line change
Expand Up @@ -215,9 +215,11 @@ def create_tenant(wallet_name, wallet_key, url, headers=None):
print("\n... single tenants, connect ...\n")

# faber create invitation for alice
faber_invitation, faber_alice_connection_id, faber_recipient_keys = create_invitation(
"faber", "alice", faber_mediation_id, FABER_ADMIN_URL
)
(
faber_invitation,
faber_alice_connection_id,
faber_recipient_keys,
) = create_invitation("faber", "alice", faber_mediation_id, FABER_ADMIN_URL)
alice_faber_connection_id = receive_invitation(
faber_invitation, "faber", alice_mediation_id, ALICE_ADMIN_URL
)
Expand Down Expand Up @@ -255,7 +257,11 @@ def create_tenant(wallet_name, wallet_key, url, headers=None):

print("\n... multitenant, connect ...\n")
multi_mediation_id = None
multi_invitation, multi_alice_connection_id, multi_recipient_keys = create_invitation(
(
multi_invitation,
multi_alice_connection_id,
multi_recipient_keys,
) = create_invitation(
multi_wallet_name, "alice", multi_mediation_id, MULTI_ADMIN_URL, multi_headers
)

Expand Down
8 changes: 5 additions & 3 deletions demo/playground/scripts/ping_agents.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,9 +124,11 @@ def create_tenant(wallet_name, wallet_key, url, headers=None):
print("\n... single tenants, connect ...\n")

# faber create invitation for alice
faber_invitation, faber_alice_connection_id, faber_recipient_keys = create_invitation(
"faber", "alice", None, FABER_ADMIN_URL
)
(
faber_invitation,
faber_alice_connection_id,
faber_recipient_keys,
) = create_invitation("faber", "alice", None, FABER_ADMIN_URL)
alice_faber_connection_id = receive_invitation(
faber_invitation, "faber", None, ALICE_ADMIN_URL
)
Expand Down

0 comments on commit 7b64900

Please sign in to comment.