Skip to content

Commit 4cde1e0

Browse files
committed
fixin CLI options and removing print
1 parent 04d97d2 commit 4cde1e0

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

cli/src/main.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ enum Commands {
3535
/// Directories to search for ontologies. If not provided, the current directory is used.
3636
search_directories: Option<Vec<PathBuf>>,
3737
/// Require ontology names to be unique; will raise an error if multiple ontologies have the same name
38-
#[clap(long, short, action)]
38+
#[clap(long, action)]
3939
require_ontology_names: bool,
4040
/// Strict mode - will raise an error if an ontology is not found
4141
#[clap(long, short, action, default_value = "false")]
@@ -137,7 +137,6 @@ fn main() -> Result<()> {
137137
no_search,
138138
} => {
139139
// if search_directories is empty, use the current directory
140-
println!("no search? {}", no_search);
141140
let config = Config::new(
142141
current_dir()?,
143142
search_directories,

0 commit comments

Comments
 (0)