From 6bb6f39dab58cfb6a826d650be91b5bc0a6ef2c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tau=20G=C3=A4rtli?= Date: Fri, 27 Sep 2024 15:31:47 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=A8=20Silence=20clippy!?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- crates/terminal-colorsaurus/examples/theme.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crates/terminal-colorsaurus/examples/theme.rs b/crates/terminal-colorsaurus/examples/theme.rs index d2b4610..daa8403 100644 --- a/crates/terminal-colorsaurus/examples/theme.rs +++ b/crates/terminal-colorsaurus/examples/theme.rs @@ -1,6 +1,8 @@ //! This example shows how to detect if the terminal uses //! a dark-on-light or a light-on-dark theme. +#![allow(clippy::use_debug)] + use terminal_colorsaurus::{color_palette, Error}; fn main() -> Result<(), display::DisplayAsDebug> {