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': case 'darwin':
pythonPath = '../../Frameworks/Python.framework/Versions/Current/bin/python3'; pythonPath = '../../Frameworks/Python.framework/Versions/Current/bin/python3';
break; break;
case 'linux': case 'linux':
pythonPath = '../venv/bin/python3'; pythonPath = '../venv/bin/python3';
if (insideFlatpak()) { if (insideFlatpak()) {
pythonPath = '/usr/bin/python'; pythonPath = '/usr/bin/python';
} }
break; break;
default: default:
if (platform().startsWith('win')) { if (platform().startsWith('win')) {