Skip to content

Commit e46516f

Browse files
committed
Remove unnecessary trait bound for home::Env
1 parent 2be6002 commit e46516f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/currentprocess.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ use std::{
1515
};
1616

1717
use enum_dispatch::enum_dispatch;
18-
use home::env as home;
1918
#[cfg(feature = "test")]
2019
use rand::{thread_rng, Rng};
2120

@@ -65,7 +64,7 @@ use crate::utils::tty::{stderr_isatty, stdout_isatty};
6564
/// methods are in performance critical loops (except perhaps progress bars -
6665
/// and even there we should be doing debouncing and managing update rates).
6766
#[enum_dispatch]
68-
pub trait CurrentProcess: home::Env + CurrentDirSource + VarSource + Debug {}
67+
pub trait CurrentProcess: CurrentDirSource + VarSource + Debug {}
6968

7069
/// Allows concrete types for the currentprocess abstraction.
7170
#[derive(Clone, Debug)]

0 commit comments

Comments
 (0)