We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2233670 commit 757ebdaCopy full SHA for 757ebda
1 file changed
example/example.py
@@ -251,7 +251,7 @@ async def showcase_vault_operations(client: Client):
251
# List vaults
252
vaults = await client.vaults.list()
253
for vault in vaults:
254
- print(vault.title)
+ print(f"{vault.title} ({vault.id})")
255
# [developer-docs.sdk.python.list-vault]-end
256
257
async def showcase_batch_item_operations(client: Client, vault_id: str):
0 commit comments