Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
hub
/
github.com/flet-dev/flet
/ delete_task
Method
delete_task
sdk/python/examples/apps/declarative/todo/main.py:65–66 ·
view source on GitHub ↗
(self, task: TaskItem)
Source
from the content-addressed store, hash-verified
63
)
64
65
def
delete_task(self, task: TaskItem):
66
self.tasks.remove(task)
67
68
def
clear_completed(self):
69
self.tasks = list(filter(
lambda
task: not task.completed, self.tasks))
Callers
nothing calls this directly
Calls
1
remove
Method · 0.45
Tested by
no test coverage detected