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 0a84ab8 commit 706603e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion viz-handlers/src/serve/directory.rs
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +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)]
#[allow(clippy::manual_unwrap_or_default)]
for (relative, title, kind, ext, base) in &self.0 {
writeln!(
f,
Expand Down

0 comments on commit 706603e

Please sign in to comment.