Skip to content

Commit 757ebda

Browse files
committed
Improve printed output of list vaults
1 parent 2233670 commit 757ebda

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

example/example.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ async def showcase_vault_operations(client: Client):
251251
# List vaults
252252
vaults = await client.vaults.list()
253253
for vault in vaults:
254-
print(vault.title)
254+
print(f"{vault.title} ({vault.id})")
255255
# [developer-docs.sdk.python.list-vault]-end
256256

257257
async def showcase_batch_item_operations(client: Client, vault_id: str):

0 commit comments

Comments
 (0)