We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 70423f9 commit 81b1dacCopy full SHA for 81b1dac
crates/chat-cli/src/cli/chat/cli/todos.rs
@@ -64,7 +64,6 @@ impl TodoSubcommand {
64
Err(e) => return Err(ChatError::Custom(format!("Could not get all to-do lists: {e}").into())),
65
};
66
let mut cleared_one = false;
67
- println!("Starting loop!: {} entries", entries.len());
68
69
for (id, value) in entries.iter() {
70
let todo_status = match value.as_str() {
@@ -76,7 +75,6 @@ impl TodoSubcommand {
76
75
},
77
None => continue,
78
79
- println!("{}", todo_status.task_description);
80
if todo_status.completed.iter().all(|b| *b) {
81
match os.database.delete_todo(id) {
82
Ok(_) => cleared_one = true,
0 commit comments