From ef7178dad20d6036706d5752ec1024e65839f5ea Mon Sep 17 00:00:00 2001 From: Juraj Sadel Date: Tue, 7 Jan 2025 10:59:29 +0100 Subject: [PATCH] Remove #[allow(clippy::enum_variant_names ...) --- esp-hal/src/uart.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/esp-hal/src/uart.rs b/esp-hal/src/uart.rs index 7541f3828..3f40923bb 100644 --- a/esp-hal/src/uart.rs +++ b/esp-hal/src/uart.rs @@ -277,7 +277,6 @@ pub enum Error { /// /// This error occurs when the received data does not conform to the /// expected UART frame format. - #[allow(clippy::enum_variant_names, reason = "Frame error is a common term")] RxFrame, /// A parity error was detected on the RX line. @@ -285,7 +284,6 @@ pub enum Error { /// This error occurs when the parity bit in the received data does not /// match the expected parity configuration. /// with the `async` feature. - #[allow(clippy::enum_variant_names, reason = "Parity error is a common term")] RxParity, }