From 151bdc8910fd14d589aad64f056957aabdfd400a Mon Sep 17 00:00:00 2001 From: xiuxiu62 Date: Tue, 12 Oct 2021 14:56:29 -0700 Subject: [PATCH] drop unused imports --- crates/nu-command/src/strings/size.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/nu-command/src/strings/size.rs b/crates/nu-command/src/strings/size.rs index 2e3267276b..b1e411cb45 100644 --- a/crates/nu-command/src/strings/size.rs +++ b/crates/nu-command/src/strings/size.rs @@ -7,7 +7,7 @@ use unicode_segmentation::UnicodeSegmentation; use nu_protocol::ast::Call; use nu_protocol::engine::{Command, EvaluationContext}; -use nu_protocol::{Example, ShellError, Signature, Span, Spanned, Type, Value}; +use nu_protocol::{ShellError, Signature, Span, Spanned, Type, Value}; pub struct Size;