Skip to content

Commit

Permalink
cli: remove stray dbg!
Browse files Browse the repository at this point in the history
Whoops, forgot to review my commits before pushing.
  • Loading branch information
BurntSushi committed Feb 15, 2024
1 parent 4a30819 commit e92e2ef
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion crates/cli/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,6 @@ pub fn is_readable_stdin() -> bool {
let file = File::from(fd);
let Ok(md) = file.metadata() else { return false };
let ft = md.file_type();
dbg!(&ft);
ft.is_file() || ft.is_fifo() || ft.is_socket()
}

Expand Down

0 comments on commit e92e2ef

Please sign in to comment.