mirror of
https://github.com/sharkdp/fd.git
synced 2024-11-18 01:40:34 +01:00
Remove type annotation.
This commit is contained in:
parent
e3af9b0307
commit
588e344d5b
1 changed files with 1 additions and 2 deletions
|
@ -114,8 +114,7 @@ fn main() {
|
|||
_ => atty::is(Stream::Stdout),
|
||||
};
|
||||
|
||||
let path_separator: Option<String> =
|
||||
matches.value_of("path-separator").map(|str| str.to_owned());
|
||||
let path_separator = matches.value_of("path-separator").map(|str| str.to_owned());
|
||||
|
||||
#[cfg(windows)]
|
||||
let colored_output = colored_output && ansi_term::enable_ansi_support().is_ok();
|
||||
|
|
Loading…
Reference in a new issue