Skip to content

Commit 4167e11

Browse files
authored
Merge pull request #47 from 1Password/lucy/fix-data-loss-warning
Remove unnecessary data loss warning from code comments
2 parents 7de05eb + f8d3658 commit 4167e11

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/onepassword/items.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ async def get(self, vault_id, item_id):
4343
return result
4444

4545
async def update(self, item):
46-
"""Update an existing item. Warning: Only text and concealed fields are currently supported. Other fields will be permanently lost when you update an item."""
46+
"""Update an existing item. You can currently only edit text and concealed fields."""
4747
response = await _invoke(
4848
{
4949
"clientId": self.client_id,
@@ -59,7 +59,7 @@ async def update(self, item):
5959
return result
6060

6161
async def delete(self, vault_id, item_id):
62-
"""Delete an item. Warning: Information saved in fields other than text and concealed fields will be permanently lost."""
62+
"""Delete an item. """
6363
await _invoke(
6464
{
6565
"clientId": self.client_id,

0 commit comments

Comments
 (0)