diff options
Diffstat (limited to 'src/config/file_system.rs')
-rw-r--r-- | src/config/file_system.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config/file_system.rs b/src/config/file_system.rs index fd3a8d8..5751583 100644 --- a/src/config/file_system.rs +++ b/src/config/file_system.rs @@ -72,7 +72,7 @@ impl Config { config_path: Option<PathBuf>, ) -> Result<Self> { let config_file_path = config_path - .map(|val| Ok(val)) + .map(Ok) .unwrap_or_else(|| -> Result<_> { paths::config_path() })?; let config: super::definitions::ConfigFile = |