diff --git a/esp-hal/src/uart.rs b/esp-hal/src/uart.rs index fdf4934cf2..fa68e819b4 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, }