Skip to content
Open
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
6 changes: 6 additions & 0 deletions dooit/api/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,12 @@ def shift_up(self) -> bool:
def _add_sibling(self) -> Self:
raise NotImplementedError # pragma: no cover

def _add_sibling_node(self) -> Self:
raise NotImplementedError # pragma: no cover

def _add_sibling_parent(self) -> Self:
raise NotImplementedError # pragma: no cover
Comment on lines +130 to +131
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Syntax error. Atleast check before opening a PR


def add_sibling(self):
return self._add_sibling()

Expand Down