Skip to content

Commit

Permalink
style: lint code
Browse files Browse the repository at this point in the history
  • Loading branch information
SARDONYX-sard committed Jan 11, 2025
1 parent c1d2f2d commit 0d997be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/serde_hkx_features/src/verify/dir.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ fn filter_hkx_files(dir: &Path) -> Vec<PathBuf> {
entry
.path()
.extension()
.map_or(false, |ext| ext.eq_ignore_ascii_case("hkx"))
.is_some_and(|ext| ext.eq_ignore_ascii_case("hkx"))
})
.map(|entry| entry.path())
.collect()
Expand Down

0 comments on commit 0d997be

Please sign in to comment.