From 8a30864f689e7a92dab43223e6d5f01b5cf33aa9 Mon Sep 17 00:00:00 2001 From: Joel Natividad <1980690+jqnatividad@users.noreply.github.com> Date: Thu, 31 Oct 2024 12:26:09 -0400 Subject: [PATCH] chore: rust fmt --- src/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.rs b/src/config.rs index e1abb6001..cc6e065aa 100644 --- a/src/config.rs +++ b/src/config.rs @@ -656,7 +656,7 @@ impl Config { /// If the file extension doesn't match known types, it returns the default delimiter. pub fn get_delim_by_extension(path: &Path, default_delim: u8) -> (String, u8, bool) { let path_str = path.to_str().unwrap_or_default().to_ascii_lowercase(); - + // we already lowercased the path_str, so allow this false positive lint #[allow(clippy::case_sensitive_file_extension_comparisons)] let snappy = path_str.ends_with(".sz");