Change summary
crates/languages/src/python.rs | 4 ----
1 file changed, 4 deletions(-)
Detailed changes
@@ -892,10 +892,6 @@ impl ToolchainLister for PythonToolchainProvider {
let mut activation_script = vec![];
match toolchain.kind {
- Some(PythonEnvironmentKind::Pixi) => {
- let env = toolchain.name.as_deref().unwrap_or("default");
- activation_script.push(format!("pixi shell -e {env}"))
- }
Some(PythonEnvironmentKind::Conda) => {
if let Some(name) = &toolchain.name {
activation_script.push(format!("conda activate {name}"));