Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
docs: update example
  • Loading branch information
Mehdi BEN ABDALLAH committed May 24, 2024
commit 5601d25547cf5428847214f4781113c91630f9c0
2 changes: 1 addition & 1 deletion examples/buckets_management.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
List all Buckets
"""
print(f"\n------- List -------\n")
buckets = buckets_api.find_buckets().buckets
buckets = buckets_api.find_buckets_iter()
print("\n".join([f" ---\n ID: {bucket.id}\n Name: {bucket.name}\n Retention: {bucket.retention_rules}"
for bucket in buckets]))
print("---")
Expand Down