Skip to content

Commit 58cec8a

Browse files
committed
Fix cargo fmt formatting
1 parent 67f42ce commit 58cec8a

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

vmm/src/app.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -669,7 +669,10 @@ impl App {
669669
let workdir = VmWorkDir::new(&vm_path);
670670
let is_removing = workdir.is_removing();
671671
// Load all VMs (including removing ones, so they show in UI)
672-
match self.load_or_update_vm(&vm_path, &occupied_cids, !is_removing).await {
672+
match self
673+
.load_or_update_vm(&vm_path, &occupied_cids, !is_removing)
674+
.await
675+
{
673676
Ok(is_new) => {
674677
if is_new {
675678
loaded += 1;

0 commit comments

Comments
 (0)