INNER CODE UNIT · Python
attachments
mfarragher/obsidiantools · obsidiantools/api.py:184
def attachments(self) -> bool:
"""bool: argument for connect method. True to include 'attachment'
files.
"""
return self._attachments
@attachments.setter
def attachments(self, value) -> bool:
self._attachments = value
@property
def md_file_index(self) -> dict[str, Path]:
"""dict: one-to-one mapping of md filename (k) to relative path (v)"""
return self._md_file_index
@md_file_index.setter
def md_file_index(self, value) -> dict[str, Path]:
self._md_file_index = value