Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
austin3dickey committed Jan 13, 2025
1 parent 7005d44 commit 94a822d
Showing 1 changed file with 4 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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>(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,
Expand Down

0 comments on commit 94a822d

Please sign in to comment.