From 1a6d7bbe39bf925f752385ec87993eb3585bb72d Mon Sep 17 00:00:00 2001 From: Muffin Date: Wed, 3 Jan 2024 22:55:31 -0600 Subject: [PATCH] Fix eslint warning --- universal-python.js | 1 + 1 file changed, 1 insertion(+) diff --git a/universal-python.js b/universal-python.js index 899cc2ddb7..00cd7ad52f 100644 --- a/universal-python.js +++ b/universal-python.js @@ -23,6 +23,7 @@ function run(command, args) { subprocess.on('exit', function(code) { // 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)') } else if (code === 0) { console.log('universal-python: Success');