We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 49cacf3 commit 36c2354Copy full SHA for 36c2354
1 file changed
langcodec-cli/src/convert.rs
@@ -40,9 +40,7 @@ fn wants_named_output(
40
format_name: &str,
41
) -> bool {
42
output.ends_with(extension)
43
- || output_format_hint
44
- .as_deref()
45
- .is_some_and(|hint| hint.eq_ignore_ascii_case(format_name))
+ || output_format_hint.is_some_and(|hint| hint.eq_ignore_ascii_case(format_name))
46
}
47
48
fn wants_xcstrings_output(output: &str, output_format_hint: Option<&String>) -> bool {
0 commit comments