Skip to content

Commit

Permalink
fix: clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
Autoparallel committed Feb 26, 2024
1 parent d0a783e commit 8b8c618
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engine/src/machine.rs
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ where
async fn execute(&mut self, instruction: MachineInstruction) -> Result<()> {
// NOTE: The unwraps here are safe because the `Behavior` in an engine is only
// accessed here and it is private.
let mut id: Option<String>;
let id: Option<String>;
match instruction {
MachineInstruction::Start(client, messager) => {
id = messager.id.clone();
Expand Down

0 comments on commit 8b8c618

Please sign in to comment.