Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
grahamc committed Sep 24, 2024
1 parent 3e7be19 commit e0b2688
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/github_actions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,5 +49,7 @@ fn escape_key_value<'a>(key: &'a str, value: &'a str) -> Result<String, Error> {
return Err(Error::ValueContainsDelimiter);
}

Ok(format!("{key}<<{delimiter}{eol}{value}{eol}{delimiter}{eol}"))
Ok(format!(
"{key}<<{delimiter}{eol}{value}{eol}{delimiter}{eol}"
))
}

0 comments on commit e0b2688

Please sign in to comment.