Skip to content

Commit c971180

Browse files
authored
Fix prettier (#11284)
1 parent 1bec65c commit c971180

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

packages/pyright-internal/src/pyright.ts

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -296,8 +296,13 @@ async function processArgs(): Promise<ExitStatus> {
296296
}
297297

298298
if (args.pythonplatform) {
299-
if (args.pythonplatform === 'Darwin' || args.pythonplatform === 'Linux' || args.pythonplatform === 'Windows' ||
300-
args.pythonplatform === 'iOS' || args.pythonplatform === 'Android') {
299+
if (
300+
args.pythonplatform === 'Darwin' ||
301+
args.pythonplatform === 'Linux' ||
302+
args.pythonplatform === 'Windows' ||
303+
args.pythonplatform === 'iOS' ||
304+
args.pythonplatform === 'Android'
305+
) {
301306
options.configSettings.pythonPlatform = args.pythonplatform;
302307
} else {
303308
console.error(

0 commit comments

Comments
 (0)