Skip to content

Commit

Permalink
Cargo fmt, brrrr
Browse files Browse the repository at this point in the history
  • Loading branch information
brainstorm committed Oct 30, 2023
1 parent 7cfec19 commit ee775b3
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions htsget-search/src/storage/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -269,10 +269,7 @@ impl Display for BytesRange {
.start
.map(|start| start.to_string())
.unwrap_or_else(|| "0".to_string());
let end = self
.end
.map(|end| end.to_string())
.unwrap_or_default();
let end = self.end.map(|end| end.to_string()).unwrap_or_default();
write!(f, "bytes={start}-{end}")
}
}
Expand Down

0 comments on commit ee775b3

Please sign in to comment.