fixed clippy issues
This commit is contained in:
parent
f1cd6948e2
commit
4b7241f5a4
1 changed files with 1 additions and 3 deletions
|
@ -145,11 +145,9 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
|
|||
now.day(),
|
||||
now.year()
|
||||
));
|
||||
} else {
|
||||
if line != "" {
|
||||
} else if !line.is_empty() {
|
||||
body_content.push(line.to_string());
|
||||
}
|
||||
}
|
||||
checked.retain(|val| val != &item);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue