Skip to content

Commit

Permalink
fix clippy output
Browse files Browse the repository at this point in the history
  • Loading branch information
jreidinger committed Jul 17, 2023
1 parent c337aac commit 765135d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rust/agama-dbus-server/src/questions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ impl Questions {
None => (),
Some(answer) => {
question.answer = answer;
return ;
return;
}
}
}
Expand All @@ -277,7 +277,7 @@ impl Questions {
}
if let Some(answer) = answer {
question.base.answer = answer;
return ;
return;
}
}
}
Expand Down

0 comments on commit 765135d

Please sign in to comment.