Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions jupyter_ydoc/ybasedoc.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,26 @@ def dirty(self, value: bool) -> None:
"""
self._ystate["dirty"] = value

@property
def hash(self) -> Optional[str]:
"""
Returns the document hash as computed by contents manager.

:return: The document hash.
:rtype: Optional[str]
"""
return self._ystate.get("hash")

@hash.setter
def hash(self, value: str) -> None:
"""
Sets the document hash.

:param value: The document hash.
:type value: str
"""
self._ystate["hash"] = value

@property
def path(self) -> Optional[str]:
"""
Expand Down
Loading