From 7427ea51dff067cc14d1c312befb2f92a45115fc Mon Sep 17 00:00:00 2001 From: Jonathan Rothberg Date: Sat, 7 Sep 2019 15:43:30 -0700 Subject: [PATCH] Removed commented out code. --- src/commands/pwd.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/commands/pwd.rs b/src/commands/pwd.rs index aa56c51653..37e2668bdb 100644 --- a/src/commands/pwd.rs +++ b/src/commands/pwd.rs @@ -1,9 +1,7 @@ use crate::commands::WholeStreamCommand; -// use crate::data::{Dictionary, Value}; use crate::errors::ShellError; use crate::parser::registry::Signature; use crate::prelude::*; -// use indexmap::IndexMap; pub struct PWD;