We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1bec65c commit c971180Copy full SHA for c971180
packages/pyright-internal/src/pyright.ts
@@ -296,8 +296,13 @@ async function processArgs(): Promise<ExitStatus> {
296
}
297
298
if (args.pythonplatform) {
299
- if (args.pythonplatform === 'Darwin' || args.pythonplatform === 'Linux' || args.pythonplatform === 'Windows' ||
300
- args.pythonplatform === 'iOS' || args.pythonplatform === 'Android') {
+ if (
+ args.pythonplatform === 'Darwin' ||
301
+ args.pythonplatform === 'Linux' ||
302
+ args.pythonplatform === 'Windows' ||
303
+ args.pythonplatform === 'iOS' ||
304
+ args.pythonplatform === 'Android'
305
+ ) {
306
options.configSettings.pythonPlatform = args.pythonplatform;
307
} else {
308
console.error(
0 commit comments