add new tasks
This commit is contained in:
@@ -343,3 +343,9 @@ class DstaskClient(TaskBackend):
|
||||
# This needs to run without capturing output
|
||||
result = self._run_command(["edit", task_id], capture_output=False)
|
||||
return result.returncode == 0
|
||||
|
||||
def edit_note_interactive(self, task_id: str) -> bool:
|
||||
"""Open task notes in editor for interactive editing."""
|
||||
# This needs to run without capturing output
|
||||
result = self._run_command(["note", task_id], capture_output=False)
|
||||
return result.returncode == 0
|
||||
|
||||
Reference in New Issue
Block a user