fixed clippy issues

This commit is contained in:
Nickiel12 2023-09-09 19:27:22 -07:00
parent f1cd6948e2
commit 4b7241f5a4

View file

@ -145,10 +145,8 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
now.day(), now.day(),
now.year() now.year()
)); ));
} else { } else if !line.is_empty() {
if line != "" {
body_content.push(line.to_string()); body_content.push(line.to_string());
}
} }
checked.retain(|val| val != &item); checked.retain(|val| val != &item);
} }