Skip to content

Commit

Permalink
split on ,
Browse files Browse the repository at this point in the history
  • Loading branch information
kavigupta committed Dec 1, 2023
1 parent 5f544f2 commit 5a94881
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/compression.rs
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ impl std::str::FromStr for FusedLambdaTags {
if s.is_empty() {
return Ok(FusedLambdaTags { tags: None })
}
let tags = s.split(",").map(|s| s.parse::<Tag>().unwrap()).collect();
let tags = s.split(',').map(|s| s.parse::<Tag>().unwrap()).collect();
Ok(FusedLambdaTags { tags: Some(tags) })
}
}
Expand Down

0 comments on commit 5a94881

Please sign in to comment.