Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
JulianGCalderon committed Apr 19, 2024
1 parent 2f0e48f commit 882ab24
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion crates/concrete_driver/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
use anyhow::bail;
use anyhow::Context;
use anyhow::Result;
use clap::Args;
use clap::{Parser, Subcommand};
use concrete_ir::lowering::lower_programs;
use concrete_parser::{error::Diagnostics, ProgramSource};
Expand Down Expand Up @@ -56,7 +57,7 @@ enum Commands {
Run(BuildArgs),
}

#[derive(Args)]
#[derive(Args, Debug)]
pub struct BuildArgs {
/// Build specific file
#[arg(required = false)]
Expand Down

0 comments on commit 882ab24

Please sign in to comment.