Skip to content

Commit bbe59eb

Browse files
committed
fmt
1 parent 456398d commit bbe59eb

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

crates/q_cli/src/cli/mod.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -353,11 +353,10 @@ impl Cli {
353353
CliRootCommands::Version { changelog } => Self::print_version(changelog),
354354
CliRootCommands::Dashboard => launch_dashboard(false).await,
355355
CliRootCommands::Chat { args } => Self::execute_chat("chat", Some(args), true).await,
356-
CliRootCommands::Mcp {args } => {
356+
CliRootCommands::Mcp { args } => {
357357
if args.iter().any(|arg| ["--help", "-h"].contains(&arg.as_str())) {
358358
return Self::execute_chat("mcp", Some(vec!["--help".to_owned()]), false).await;
359359
}
360-
361360
Self::execute_chat("mcp", Some(args), true).await
362361
},
363362
CliRootCommands::Inline(subcommand) => subcommand.execute(&cli_context).await,

0 commit comments

Comments
 (0)