diff --git a/src/main.rs b/src/main.rs index 1204635..0a31aee 100644 --- a/src/main.rs +++ b/src/main.rs @@ -52,6 +52,7 @@ fn main() -> std::io::Result<()> { // NOTE: for some reason this is always true for u8, but I don't trust it } else if let Some(stdin) = matches.get_one::("stdin") { // If --stdin set + #[allow(clippy::suspicious_else_formatting)] if stdin > &0 { parse = crate::parser::parse(std::io::stdin().lock()); } else {