Skip to content

Commit

Permalink
Fix another eslint error
Browse files Browse the repository at this point in the history
  • Loading branch information
GarboMuffin committed Jan 4, 2024
1 parent 1a6d7bb commit a57c4da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion universal-python.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ function run(command, args) {
// Microsoft Store install shim exits with code 9009
if (process.platform === 'win32' && code === 9009) {
// eslint-disable-next-line max-len
console.log('universal-python: Attempted to start python, but got the Microsoft Store installation shim. Install python from the Microsoft Store or python.org. (code 9009)')
console.log('universal-python: Attempted to start python, but got the Microsoft Store installation shim. Install python from the Microsoft Store or python.org. (code 9009)');
} else if (code === 0) {
console.log('universal-python: Success');
} else {
Expand Down

0 comments on commit a57c4da

Please sign in to comment.