Skip to content
Snippets Groups Projects
Commit f35403e2 authored by Cédric Moreau's avatar Cédric Moreau Committed by Cédric Moreau
Browse files

#239: fix: clippy

parent 24c0a2ff
No related branches found
No related tags found
No related merge requests found
Pipeline #39294 waiting for manual action
...@@ -112,12 +112,12 @@ async fn release( ...@@ -112,12 +112,12 @@ async fn release(
branch: String, branch: String,
milestone: String, milestone: String,
) -> Result<()> { ) -> Result<()> {
let mut release_notes = String::from(format!( let mut release_notes = format!(
" "
# {title} # {title}
" "
)); );
if let Some(network) = network { if let Some(network) = network {
add_srtool_notes(network.clone(), &mut release_notes)?; add_srtool_notes(network.clone(), &mut release_notes)?;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment