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
-- Check if poetry environment exists
print("No virtual environment detected, using system python")
return {
"--python-executable", python
}
end
print("Using virtual environment: " .. virtual)
return {
"--python-executable", virtual .. "/bin/python3"
}