Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
Index your code
hub
/
github.com/flet-dev/flet
/ delete_task
Method
delete_task
sdk/python/examples/apps/studio_gallery/todo.py:60–61 ·
view source on GitHub ↗
(self, task: TaskItem)
Source
from the content-addressed store, hash-verified
58
)
59
60
def
delete_task(self, task: TaskItem):
61
self.tasks.remove(task)
62
63
def
clear_completed(self):
64
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