From cbea23e3fcbafdc6387f6799325de622d00c4749 Mon Sep 17 00:00:00 2001 From: Ed Page Date: Tue, 18 Apr 2023 15:36:02 -0500 Subject: [PATCH] style: Make clippy happy --- clap_builder/src/output/help_template.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/clap_builder/src/output/help_template.rs b/clap_builder/src/output/help_template.rs index 9ac31cf87a0..86a61169c32 100644 --- a/clap_builder/src/output/help_template.rs +++ b/clap_builder/src/output/help_template.rs @@ -1,3 +1,8 @@ +// HACK: for rust 1.64 (1.68 doesn't need this since this is in lib.rs) +// +// Wanting consistency in our calls +#![allow(clippy::write_with_newline)] + // Std use std::borrow::Cow; use std::cmp;