From cc8a470668367a337167618e8e023ddec912570c Mon Sep 17 00:00:00 2001 From: xiuxiu62 Date: Tue, 5 Oct 2021 14:13:23 -0700 Subject: [PATCH] clean up unused imports --- crates/nu-command/src/filesystem/cp.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/nu-command/src/filesystem/cp.rs b/crates/nu-command/src/filesystem/cp.rs index d2a4fbb81b..6ebc305923 100644 --- a/crates/nu-command/src/filesystem/cp.rs +++ b/crates/nu-command/src/filesystem/cp.rs @@ -1,11 +1,11 @@ use std::env::current_dir; use std::path::PathBuf; -use nu_engine::{eval_expression, CallExt}; +use nu_engine::CallExt; use nu_path::canonicalize_with; use nu_protocol::ast::Call; use nu_protocol::engine::{Command, EvaluationContext}; -use nu_protocol::{IntoValueStream, ShellError, Signature, SyntaxShape, Value}; +use nu_protocol::{ShellError, Signature, SyntaxShape, Value}; use crate::filesystem::util::FileStructure;