cargo fmt

This commit is contained in:
Sam Hedin 2020-06-07 08:36:06 +02:00
parent e1581ec156
commit c5b8abbcd3
2 changed files with 2 additions and 3 deletions

View File

@ -31,7 +31,7 @@ impl DirectorySpecificEnvironment {
{ {
return Some(PathBuf::from(&dir)); return Some(PathBuf::from(&dir));
} }
None None
}) })
.collect() .collect()
} else { } else {

View File

@ -51,8 +51,7 @@ impl EnvironmentSyncer {
// that aren't loaded from config. // that aren't loaded from config.
environment.add_env(&name, &value, false); environment.add_env(&name, &value, false);
environment environment.maintain_directory_environment().ok();
.maintain_directory_environment().ok();
// clear the env var from the session // clear the env var from the session
// we are about to replace them // we are about to replace them