summaryrefslogtreecommitdiffstats
path: root/src/config.rs
diff options
context:
space:
mode:
authorEric Huss <eric@huss.org>2024-02-24 12:04:57 -0800
committerEric Huss <eric@huss.org>2024-02-24 12:04:57 -0800
commit0cc439eee3fe0b46cdf5895787138c336e7b191f (patch)
tree503eae6667dad40b5b091128e29eebc10c7c68e0 /src/config.rs
parente8b8f34f2bff38d9dabbe35b9a7abbb94a7abdc0 (diff)
Fix redundant imports.
Diffstat (limited to 'src/config.rs')
-rw-r--r--src/config.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config.rs b/src/config.rs
index 7f56e797..67b1a700 100644
--- a/src/config.rs
+++ b/src/config.rs
@@ -58,7 +58,7 @@ use std::io::Read;
use std::path::{Path, PathBuf};
use std::str::FromStr;
use toml::value::Table;
-use toml::{self, Value};
+use toml::Value;
use crate::errors::*;
use crate::utils::{self, toml_ext::TomlExt};