1
0
mirror of https://github.com/nushell/nushell.git synced 2025-07-15 13:55:26 +02:00

Cleanup unneeded compiler flag

This commit is contained in:
Jonathan Turner
2019-08-22 04:00:29 +12:00
parent 23ef76a86b
commit 8e5744cf9b

@ -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<OutputStream, Sh
#[cfg(not(target_os = "linux"))]
{
use sysinfo::RefreshKind;
let mut sy = sysinfo::System::new_with_specifics(RefreshKind::new().with_processes());
sy.refresh_processes();