fix(clippy): resolve unused code warning

This commit is contained in:
Rodrigo Rodriguez (Pragmatismo) 2026-01-25 10:29:56 -03:00
parent 74a2122827
commit fee8b3d2a3

View file

@ -209,6 +209,7 @@ pub async fn serve_suite() -> impl IntoResponse {
} }
} }
#[allow(dead_code)]
pub fn remove_section(html: &str, section: &str) -> String { pub fn remove_section(html: &str, section: &str) -> String {
let start_marker = format!("<!-- SECTION:{} -->", section); let start_marker = format!("<!-- SECTION:{} -->", section);
let end_marker = format!("<!-- ENDSECTION:{} -->", section); let end_marker = format!("<!-- ENDSECTION:{} -->", section);