File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -176,14 +176,14 @@ async def main():
176
176
## NOTE: just for the sake of archiving it. This is because the SDK
177
177
## NOTE: only works with active items, so archiving and then deleting
178
178
## NOTE: is not yet possible.
179
- async def archive_item (vault_id : str , item_id : str , client : Client ):
179
+ async def archive_item (client : Client , vault_id : str , item_id : str ):
180
180
# [developer-docs.sdk.python.archive-item]-start
181
- # Delete a item from your vault.
181
+ # Archive a item from your vault.
182
182
await client .items .archive (vault_id , item_id )
183
183
# [developer-docs.sdk.python.archive-item]-end
184
184
185
185
186
- async def share_item (vault_id : str , item_id : str , client : Client ):
186
+ async def share_item (client : Client , vault_id : str , item_id : str ):
187
187
# [developer-docs.sdk.python.item-share-get-item]-start
188
188
item = await client .items .get (vault_id , item_id )
189
189
print (item )
You can’t perform that action at this time.
0 commit comments