Skip to content

Commit

Permalink
Update serialize_iter_yaml.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
ReenigneArcher committed Nov 2, 2024
1 parent eea66e3 commit 17cffb0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/utils/serialize_iter_yaml.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ pub fn serialize_iter_yaml(

for value in values {
result += "---\n";
result += serde_yaml::to_string(&value)?.as_str();
// result += serde_yaml::to_string(&value)?.as_str();
result += &serde_yaml::to_string(&value)?;
}

Ok(result)
Expand Down

0 comments on commit 17cffb0

Please sign in to comment.