We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 013bcfa commit 771d129Copy full SHA for 771d129
.vscode/settings.json
@@ -11,6 +11,7 @@
11
"git.branchProtectionPrompt": "alwaysCommitToNewBranch",
12
"git.branchRandomName.enable": true,
13
"chat.tools.terminal.autoApprove": {
14
- "cargo test": true
+ "cargo test": true,
15
+ "cargo fmt": true
16
}
17
crates/pet-venv/src/lib.rs
@@ -57,9 +57,7 @@ pub fn try_environment_from_venv_dir(path: &Path) -> Option<PythonEnvironment> {
57
.executable(Some(executable))
58
.version(version)
59
.prefix(Some(prefix))
60
- .error(Some(
61
- "Python executable is a broken symlink".to_string(),
62
- ))
+ .error(Some("Python executable is a broken symlink".to_string()))
63
.build(),
64
),
65
ExecutableResult::NotFound => {
0 commit comments