From a8f77c49e28adaab97e9898335d7f9831a02c02e Mon Sep 17 00:00:00 2001 From: Edd Robinson Date: Wed, 8 Jul 2020 18:50:58 +0100 Subject: [PATCH] refactor: PR feedback Co-authored-by: Carol (Nichols || Goulding) <193874+carols10cents@users.noreply.github.com> --- src/commands/convert.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/convert.rs b/src/commands/convert.rs index f6621da86c..115d74735e 100644 --- a/src/commands/convert.rs +++ b/src/commands/convert.rs @@ -113,7 +113,7 @@ pub fn convert( debug!("Reading from input file {}", input_path); if is_directory(input_path) { - let files: Vec = fs::read_dir(input_path) + let files: Vec<_> = fs::read_dir(input_path) .unwrap() .filter_map(Result::ok) .filter(|f| {