We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7484679 commit e9fcf87Copy full SHA for e9fcf87
crates/pet-python-utils/src/version.rs
@@ -78,8 +78,7 @@ fn get_python_exe_used_to_create_venv<T: AsRef<Path>>(executable: T) -> Option<P
78
warn!("Attempted to determine creator of virtual environment, but the env executable ({:?}) is not in the expected location.", executable.as_ref());
79
return None;
80
}
81
- }
82
- if parent_dir.file_name().unwrap_or_default() != "bin" {
+ } else if parent_dir.file_name().unwrap_or_default() != "bin" {
83
84
85
0 commit comments