Skip to content
This repository was archived by the owner on Dec 8, 2023. It is now read-only.

Commit 3d6cad0

Browse files
committed
Fix example
1 parent 177359f commit 3d6cad0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ alma_client = Client(api_key="sk_test..")
2020
payments = alma_client.payments.fetch_all()
2121

2222
for p in payments:
23-
print(f"{p.id}: Paiement en {p.installments_count)} fois")
23+
print(f"{p.id}: Paiement en {len(p.payment_plan)} fois")
2424

2525

2626
payment_data = {

0 commit comments

Comments
 (0)