chore: formatting

This commit is contained in:
drendog 2025-12-29 12:52:41 +01:00
parent 4ea7f11864
commit 7ace2d4d0d
Signed by: dwenya
GPG key ID: 8DD77074645332D0

View file

@ -156,11 +156,12 @@ impl AppState {
}); });
} }
let queue_handle = self.queue_handle.as_ref().ok_or_else(|| { let queue_handle =
LayerShikaError::InvalidInput { self.queue_handle
message: "Queue handle not initialized".to_string(), .as_ref()
} .ok_or_else(|| LayerShikaError::InvalidInput {
})?; message: "Queue handle not initialized".to_string(),
})?;
let context = self.create_lock_context()?; let context = self.create_lock_context()?;
let (definition, compilation_result) = self.resolve_lock_component(component_name)?; let (definition, compilation_result) = self.resolve_lock_component(component_name)?;