Remove #[allow(clippy::enum_variant_names ...)

This commit is contained in:
Juraj Sadel 2025-01-07 10:59:29 +01:00
parent c0ae0ad062
commit ef7178dad2

View File

@ -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,
}