Ejemplo n.º 1
0
def view_by_project(tasks):
    """return list of tasks sorted by project"""
    return [t for p in utils.projects_get(tasks) for t in tasks
            if p in t.projects]
Ejemplo n.º 2
0
def print_projects():
    """print all projects represented in the task list"""
    tasks = collect_tasks()
    print('\n'.join(utils.projects_get(tasks)))