From 7de4a68bfe7becff15fd8399d785f3ff10fc8bfe Mon Sep 17 00:00:00 2001 From: sd234678 Date: Fri, 3 May 2019 11:05:27 +0100 Subject: [PATCH] Remove unused import in lfp --- tools/src/bin/lfp.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/src/bin/lfp.rs b/tools/src/bin/lfp.rs index e597d4515b..32b2ab2975 100644 --- a/tools/src/bin/lfp.rs +++ b/tools/src/bin/lfp.rs @@ -7,7 +7,7 @@ extern crate walkdir; use docopt::Docopt; use std::{path, fs, io}; -use std::io::{BufRead, Write}; +use std::io::BufRead; fn main () { let args: Args = Docopt::new(USAGE)