Fix clippy lints.

This commit is contained in:
Tom Alexander
2024-09-29 14:08:05 -04:00
parent ef195cd4df
commit cdac8224c6
7 changed files with 41 additions and 17 deletions

View File

@@ -2,7 +2,9 @@ use std::error::Error;
#[derive(Debug, Clone)]
pub(crate) enum GiteaClientError {
#[allow(dead_code)]
Static(#[allow(dead_code)] &'static str),
#[allow(dead_code)]
String(#[allow(dead_code)] String),
NoTotalCountHeaderInResponse,
}