Skip to content
This repository has been archived by the owner on Nov 28, 2023. It is now read-only.

Commit

Permalink
Rm " from headers
Browse files Browse the repository at this point in the history
  • Loading branch information
AOx0 committed Nov 11, 2023
1 parent 1a08b07 commit 101fcd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clean/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ fn main() -> Result<()> {
let headers = lines.next().unwrap()?.to_owned();
let headers = headers
.split(',')
.map(|a| a.to_owned())
.map(|a| a.replace('"', ""))
.collect::<Vec<String>>();

let u = extract_uniques(headers.as_slice(), lines)?;
Expand Down

0 comments on commit 101fcd2

Please sign in to comment.