Fix clippy warnings and make them all errors

This commit is contained in:
Dustin J. Mitchell
2020-12-24 17:39:49 +00:00
parent 161c38807d
commit 8989b0d2e3
12 changed files with 24 additions and 23 deletions

View File

@@ -45,7 +45,7 @@ pub(super) fn apply_modification<W: WriteColor>(
task.remove_tag(&tag)?;
}
write!(w, "modified task {}\n", task.get_uuid())?;
writeln!(w, "modified task {}", task.get_uuid())?;
Ok(())
}