Skip to content

Commit

Permalink
removed lint
Browse files Browse the repository at this point in the history
  • Loading branch information
flexatone committed Nov 8, 2024
1 parent 4eeb547 commit f57d054
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
use std;
use std::io::stderr;

fn main() -> Result<(), Box<dyn std::error::Error>> {
Expand Down
4 changes: 2 additions & 2 deletions src/validation_report.rs
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ impl Rowable for ValidationRecord {
let sites_display = match &self.sites {
Some(sites) => sites
.iter()
.map(|s| format!("{}", s.to_string()))
.map(|s| s.to_string())
.collect::<Vec<_>>()
.join(","),
None => "".to_string(),
Expand Down Expand Up @@ -141,7 +141,7 @@ impl ValidationReport {
Some(sites) => Some(
sites
.iter()
.map(|s| format!("{}", s.to_string()))
.map(|s| s.to_string())
.collect::<Vec<_>>(),
),
None => None,
Expand Down

0 comments on commit f57d054

Please sign in to comment.