Skip to content

Commit

Permalink
fix(handlers): clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
fundon committed Mar 23, 2024
1 parent 951d4fc commit 0a84ab8
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions viz-handlers/src/serve/directory.rs
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,7 @@ pub(crate) struct Files(Vec<(String, String, bool, Option<String>, String)>);

impl Display for Files {
fn fmt(&self, f: &mut Formatter<'_>) -> Result {
#[allow(clippy::unwrap_or_default)]
for (relative, title, kind, ext, base) in &self.0 {
writeln!(
f,
Expand Down

0 comments on commit 0a84ab8

Please sign in to comment.