Skip to content

Commit 8e02478

Browse files
committed
chore: fix formatting
1 parent 5dff360 commit 8e02478

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

crates/rullm-cli/src/commands/alias.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -221,10 +221,7 @@ async fn show_alias(config_path: &Path, alias: &str, output_level: OutputLevel)
221221
// Try to resolve it through the resolver to show effective resolution
222222
match resolver.resolve(alias) {
223223
Ok((provider, model)) => {
224-
crate::output::note(
225-
&format!("Resolves to: {provider} / {model}"),
226-
output_level,
227-
);
224+
crate::output::note(&format!("Resolves to: {provider} / {model}"), output_level);
228225
}
229226
Err(e) => {
230227
crate::output::error(&format!("Resolution error: {e}"), output_level);

0 commit comments

Comments
 (0)