Skip to content

Commit 7e5a10c

Browse files
committed
bring my code back
1 parent 53c80fa commit 7e5a10c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/client/common/terminal/service.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,9 +116,8 @@ export class TerminalService implements ITerminalService, Disposable {
116116
this.serviceContainer.get<IInterpreterService>(IInterpreterService),
117117
)
118118
: undefined;
119-
|| (minorVersion ?? 0) >= 13
120119

121-
if ((isPythonShell && !pythonrcSetting) || (isPythonShell && isWindows())) {
120+
if ((isPythonShell && !pythonrcSetting) || (isPythonShell && isWindows()) || (minorVersion ?? 0) >= 13) {
122121
// If user has explicitly disabled SI for Python, use sendText for inside Terminal REPL.
123122
terminal.sendText(commandLine);
124123
return undefined;

0 commit comments

Comments
 (0)