Skip to content

Commit

Permalink
bring my code back
Browse files Browse the repository at this point in the history
  • Loading branch information
anthonykim1 committed Feb 3, 2025
1 parent 53c80fa commit 7e5a10c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/client/common/terminal/service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -116,9 +116,8 @@ export class TerminalService implements ITerminalService, Disposable {
this.serviceContainer.get<IInterpreterService>(IInterpreterService),
)
: undefined;
|| (minorVersion ?? 0) >= 13

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

0 comments on commit 7e5a10c

Please sign in to comment.