summaryrefslogtreecommitdiffstats
path: root/src/options
diff options
context:
space:
mode:
authorClement Tsang <34804052+ClementTsang@users.noreply.github.com>2024-05-07 02:03:30 -0400
committerGitHub <noreply@github.com>2024-05-07 02:03:30 -0400
commit398bf5930f32616bce6975ff2038efbdea7293fe (patch)
tree4acdeb9ff6a0369edaf03f7490149577cf904ce8 /src/options
parentbcc89170a6f37046df5e62b5e7465c6ca37b6452 (diff)
refactor: some string-related code cleanup/refactor (#1463)
* other: organize some utility function files * deps: remove kstring * refactor: some naming changes * refactor: some more small refactoring/naming changes * simplify to_cell to return a Cow * enable lints
Diffstat (limited to 'src/options')
-rw-r--r--src/options/config.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/options/config.rs b/src/options/config.rs
index 8a150ee8..5fe29fe2 100644
--- a/src/options/config.rs
+++ b/src/options/config.rs
@@ -7,7 +7,6 @@ use serde::{Deserialize, Serialize};
pub use self::ignore_list::IgnoreList;
use self::{cpu::CpuConfig, layout::Row, process_columns::ProcessConfig};
-
use super::ConfigColours;
#[derive(Clone, Debug, Default, Deserialize)]