Merge pull request #220 from mayanayza/feat/rate-limiting

fix linting
This commit is contained in:
Maya
2025-11-29 12:49:21 -05:00
committed by GitHub

View File

@@ -567,7 +567,10 @@ async fn generate_services_markdown() -> Result<(), Box<dyn std::error::Error>>
// Format logo
let logo = if !logo_url.is_empty() {
format!("<img src=\"{}\" alt=\"{}\" width=\"32\" height=\"32\" />", logo_url, name)
format!(
"<img src=\"{}\" alt=\"{}\" width=\"32\" height=\"32\" />",
logo_url, name
)
} else {
"".to_string()
};