Skip to content

Commit 6d1be18

Browse files
committed
why is lint failing
1 parent 4e69924 commit 6d1be18

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/client/terminals/codeExecution/terminalReplWatcher.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,7 @@ import { EventName } from '../../telemetry/constants';
55

66
function checkREPLCommand(command: string): boolean {
77
const lower = command.toLowerCase().trimStart();
8-
return (
9-
lower.startsWith('python') || lower.startsWith('py') || lower.startsWith('python ') || lower.startsWith('py ')
10-
);
8+
return lower.startsWith('python') || lower.startsWith('py');
119
}
1210

1311
export function registerTriggerForTerminalREPL(disposables: Disposable[]): void {

0 commit comments

Comments
 (0)