style(none-ls.lua): remove print statements for cleaner code and better readability

This commit is contained in:
David Ibia
2024-06-21 12:54:43 +01:00
parent 2e5c3a7f35
commit a322834154

View File

@@ -18,13 +18,11 @@ function ResolvePythonEnvironment()
if virtual == nil then if virtual == nil then
-- Check if poetry environment exists -- Check if poetry environment exists
print("No virtual environment detected, using system python")
return { return {
"--python-executable", python "--python-executable", python
} }
end end
print("Using virtual environment: " .. virtual)
return { return {
"--python-executable", virtual .. "/bin/python3" "--python-executable", virtual .. "/bin/python3"
} }