Skip to content

Commit

Permalink
dev: fix clippy warnings for: src/lib.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
da2ce7 committed May 10, 2023
1 parent 7f79fa9 commit 3e7a917
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ where
let mut acc = vec![];
for s in s.as_ref().split(',') {
let item = s.trim().parse::<T>().map_err(|_| ())?;
acc.push(item)
acc.push(item);
}
if acc.is_empty() {
Ok(None)
Expand Down

0 comments on commit 3e7a917

Please sign in to comment.