Merge pull request #115 from djmitche/issue110

Fix clippy warnings and make them all errors
This commit is contained in:
Dustin J. Mitchell
2020-12-24 13:30:39 -05:00
committed by GitHub
12 changed files with 24 additions and 23 deletions

View File

@@ -43,7 +43,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(())
}