MCPcopy Create free account
hub / github.com/geekcomputers/Python / show_tasks

Function show_tasks

TaskPlanner.py:27–32  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

25
26
27def show_tasks():
28 tasks = load_tasks()
29 for task in tasks:
30 print(
31 f"Task: {task['task']}, Deadline: {task['deadline']}, Completed: {task['completed']}"
32 )
33
34
35# Example usage

Callers 1

TaskPlanner.pyFile · 0.70

Calls 1

load_tasksFunction · 0.70

Tested by

no test coverage detected