From 8e5744cf9b32083cb862ff555aa60f9261f2b967 Mon Sep 17 00:00:00 2001 From: Jonathan Turner Date: Thu, 22 Aug 2019 04:00:29 +1200 Subject: [PATCH] Cleanup unneeded compiler flag --- src/commands/ps.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/commands/ps.rs b/src/commands/ps.rs index 4913cb0a3..0dd9a1a6c 100644 --- a/src/commands/ps.rs +++ b/src/commands/ps.rs @@ -2,8 +2,7 @@ use crate::commands::WholeStreamCommand; use crate::errors::ShellError; use crate::object::process::process_dict; use crate::prelude::*; -#[allow(unused)] -use sysinfo::{RefreshKind, SystemExt}; +use sysinfo::SystemExt; pub struct PS; @@ -35,6 +34,7 @@ fn ps(args: CommandArgs, _registry: &CommandRegistry) -> Result