From 8b8c618e36241bb864aa14425f49e85018310c3c Mon Sep 17 00:00:00 2001 From: Colin Roberts Date: Mon, 26 Feb 2024 09:53:18 -0700 Subject: [PATCH] fix: clippy --- engine/src/machine.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/src/machine.rs b/engine/src/machine.rs index 558318c7..d6e3d888 100644 --- a/engine/src/machine.rs +++ b/engine/src/machine.rs @@ -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; + let id: Option; match instruction { MachineInstruction::Start(client, messager) => { id = messager.id.clone();