We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4747a48 commit 750c159Copy full SHA for 750c159
1 file changed
techsupport/clone_agreements/app.py
@@ -38,6 +38,11 @@ def clone(
38
to_account.environment,
39
)
40
41
- agreement = mpt_client.commerce.agreements.get(agreement_id)
+ agreement_first_account = mpt_client.commerce.agreements.get(agreement_id)
42
+ agreement_second_account = to_account_mpt_client.commerce.agreements.get(
43
+ agreement_id
44
+ )
45
- console.print(f"Found agreement: {agreement.id}")
46
+ console.print(
47
+ f"Found agreement: {agreement_first_account.id} and {agreement_second_account.id}"
48
0 commit comments