Skip to content

Commit 3064927

Browse files
committed
fix: remove error message from behaviour when using head/tail
1 parent 62b62a8 commit 3064927

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,6 +278,6 @@ fn main() -> Result<(), SearchConfigError> {
278278
.thread_count(args.thread_num.unwrap_or(THREAD_COUNT))
279279
.build()?;
280280

281-
finder.print_results(args.no_colour, args.top_n, args.sort)?;
281+
let _ = finder.print_results(args.no_colour, args.top_n, args.sort);
282282
Ok(())
283283
}

0 commit comments

Comments
 (0)