We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 13becfd commit 436b345Copy full SHA for 436b345
1 file changed
example/example.py
@@ -228,8 +228,12 @@ async def showcase_vault_operations(client: Client):
228
title="Python SDK Updated Name",
229
description="Updated description",
230
)
231
-
232
- await client.vaults.update(created_vault.id, update_params)
+
+ updated_vault = await client.vaults.update(created_vault.id, update_params)
233
+ print(
234
+ f'Updated vault "{updated_vault.title}" ({updated_vault.id}): '
235
+ f'{updated_vault.description!r}'
236
+ )
237
# [developer-docs.sdk.python.update-vault]-end
238
239
# [developer-docs.sdk.python.get-vault-details]-start
0 commit comments