Skip to content

Commit

Permalink
fixin CLI options and removing print
Browse files Browse the repository at this point in the history
  • Loading branch information
gtfierro committed Jan 22, 2025
1 parent 04d97d2 commit 4cde1e0
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions cli/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ enum Commands {
/// Directories to search for ontologies. If not provided, the current directory is used.
search_directories: Option<Vec<PathBuf>>,
/// Require ontology names to be unique; will raise an error if multiple ontologies have the same name
#[clap(long, short, action)]
#[clap(long, action)]
require_ontology_names: bool,
/// Strict mode - will raise an error if an ontology is not found
#[clap(long, short, action, default_value = "false")]
Expand Down Expand Up @@ -137,7 +137,6 @@ fn main() -> Result<()> {
no_search,
} => {
// if search_directories is empty, use the current directory
println!("no search? {}", no_search);
let config = Config::new(
current_dir()?,
search_directories,
Expand Down

0 comments on commit 4cde1e0

Please sign in to comment.