Fix clippy lints

This commit is contained in:
Héctor Ramón Jiménez 2023-11-29 22:37:54 +01:00
parent 9b34b2ac19
commit 7def3ee38a
No known key found for this signature in database
GPG key ID: 7CC46565708259A7
4 changed files with 28 additions and 19 deletions

View file

@ -228,7 +228,7 @@ where
match operation.finish() {
operation::Outcome::None => {}
operation::Outcome::Some(message) => {
self.queued_messages.push(message)
self.queued_messages.push(message);
}
operation::Outcome::Chain(next) => {
current_operation = Some(next);