Skip to content

Commit f5cfd2d

Browse files
authored
Update create-customer-payment-profile.py
1 parent 152ce8e commit f5cfd2d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: CustomerProfiles/create-customer-payment-profile.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ def create_customer_payment_profile(customerProfileId):
1919
payment.creditCard = creditCard
2020

2121
billTo = apicontractsv1.customerAddressType()
22-
billTo.firstName = "John" + random.randint(0, 10000)
23-
billTo.lastName = "Snow" + random.randint(0, 10000)
22+
billTo.firstName = "John" + str(random.randint(0, 10000))
23+
billTo.lastName = "Snow" + str(random.randint(0, 10000))
2424

2525
profile = apicontractsv1.customerPaymentProfileType()
2626
profile.payment = payment

0 commit comments

Comments
 (0)