From 68990b55da8659da15e596f04efd70ecd4411a1a Mon Sep 17 00:00:00 2001 From: konstin Date: Wed, 18 Oct 2023 13:54:05 +0200 Subject: [PATCH] clippy --- crates/ruff_python_formatter/src/cli.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/ruff_python_formatter/src/cli.rs b/crates/ruff_python_formatter/src/cli.rs index b41bd7d12bc59c..8195f23579377e 100644 --- a/crates/ruff_python_formatter/src/cli.rs +++ b/crates/ruff_python_formatter/src/cli.rs @@ -23,6 +23,7 @@ pub enum Emit { #[derive(Parser)] #[command(author, version, about, long_about = None)] +#[allow(clippy::struct_excessive_bools)] // It's only the dev cli anyways pub struct Cli { /// Python files to format. If there are none, stdin will be used. `-` as stdin is not supported pub files: Vec,