Correct the alignment.

This commit is contained in:
Akshay Joshi 2024-06-18 18:25:38 +05:30
parent d4b72e2d89
commit 4c5639bee6

View File

@ -41,11 +41,11 @@ const getPythonPath = () => {
case 'darwin':
pythonPath = '../../Frameworks/Python.framework/Versions/Current/bin/python3';
break;
case 'linux':
pythonPath = '../venv/bin/python3';
if (insideFlatpak()) {
pythonPath = '/usr/bin/python';
}
case 'linux':
pythonPath = '../venv/bin/python3';
if (insideFlatpak()) {
pythonPath = '/usr/bin/python';
}
break;
default:
if (platform().startsWith('win')) {