@@ -12,7 +12,7 @@ def __init__(self, inner_client: InnerClient):
1212
1313 async def attach (self , item : Item , file_params : FileCreateParams ) -> Item :
1414 """
15- Attach files to Items
15+ Attach files to Items.
1616 """
1717 response = await self .inner_client .invoke (
1818 {
@@ -34,7 +34,7 @@ async def attach(self, item: Item, file_params: FileCreateParams) -> Item:
3434
3535 async def read (self , vault_id : str , item_id : str , attr : FileAttributes ) -> bytes :
3636 """
37- Read file content from the Item
37+ Read file content from the Item.
3838 """
3939 response = await self .inner_client .invoke (
4040 {
@@ -57,7 +57,7 @@ async def read(self, vault_id: str, item_id: str, attr: FileAttributes) -> bytes
5757
5858 async def delete (self , item : Item , section_id : str , field_id : str ) -> Item :
5959 """
60- Delete a field file from Item using the section and field IDs
60+ Delete a field file from Item using the section and field IDs.
6161 """
6262 response = await self .inner_client .invoke (
6363 {
@@ -82,7 +82,7 @@ async def replace_document(
8282 self , item : Item , doc_params : DocumentCreateParams
8383 ) -> Item :
8484 """
85- Replace the document file within a document item
85+ Replace the document file within a document item.
8686 """
8787 response = await self .inner_client .invoke (
8888 {
0 commit comments