From 94a822db11e95f26428de6376b137d80905ab3c5 Mon Sep 17 00:00:00 2001 From: Austin Dickey Date: Mon, 13 Jan 2025 14:18:00 -0600 Subject: [PATCH] lint --- .../src/client/terminals/codeExecution/helper.ts | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/extensions/positron-python/src/client/terminals/codeExecution/helper.ts b/extensions/positron-python/src/client/terminals/codeExecution/helper.ts index ad221eb85d62..adda6a309359 100644 --- a/extensions/positron-python/src/client/terminals/codeExecution/helper.ts +++ b/extensions/positron-python/src/client/terminals/codeExecution/helper.ts @@ -98,15 +98,10 @@ export class CodeExecutionHelper implements ICodeExecutionHelper { const startLineVal = activeEditor?.selection?.start.line ?? 0; const endLineVal = activeEditor?.selection?.end.line ?? 0; const emptyHighlightVal = activeEditor?.selection?.isEmpty ?? true; - let smartSendSettingsEnabledVal = true; - const configuration = this.serviceContainer.get(IConfigurationService); - if (configuration) { - // --- Start Positron --- - // This setting is hidden in favor of the Positron console. - // const pythonSettings = configuration.getSettings(this.activeResourceService.getActiveResource()); - // smartSendSettingsEnabledVal = pythonSettings.REPL.enableREPLSmartSend; - // --- End Positron --- - } + // --- Start Positron --- + // This setting is hidden in favor of the Positron console. + const smartSendSettingsEnabledVal = true; + // --- End Positron --- const input = JSON.stringify({ code,