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

#239: fix: clippy

parent 73000cdd
No related branches found
No related tags found
No related merge requests found
Pipeline #39286 passed
...@@ -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