Skip to content

Commit 16c7412

Browse files
committed
ref: cargo fmt
1 parent 74a774d commit 16c7412

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

crates/cli/src/diagnostics/diagnose.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ impl Diagnose {
118118
),
119119
&path,
120120
),
121-
}
121+
}
122122
}
123123

124124
pub fn severity(&self) -> Severity {

crates/cli/src/main.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,10 @@ async fn main() {
8383
Commands::Download { tag, features } => {
8484
command::download::handle_download(tag, features).await
8585
}
86-
Commands::Watch { path, ignore_warnings } => command::watch::watch_for_changes(path, !ignore_warnings).await,
86+
Commands::Watch {
87+
path,
88+
ignore_warnings,
89+
} => command::watch::watch_for_changes(path, !ignore_warnings).await,
8790
Commands::Push { token, url, path } => command::push::push(token, url, path).await,
8891
}
8992
}

0 commit comments

Comments
 (0)