We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 004dab2 commit 99ee2ceCopy full SHA for 99ee2ce
src/client/terminals/codeExecution/helper.ts
@@ -89,9 +89,7 @@ export class CodeExecutionHelper implements ICodeExecutionHelper {
89
const startLineVal = activeEditor?.selection?.start.line ?? 0;
90
const endLineVal = activeEditor?.selection?.end.line ?? 0;
91
const emptyHighlightVal = activeEditor?.selection?.isEmpty ?? true;
92
- const smartSendExperimentEnabledVal = pythonSmartSendEnabled(this.serviceContainer)
93
- ? pythonSmartSendEnabled(this.serviceContainer)
94
- : false;
+ const smartSendExperimentEnabledVal = pythonSmartSendEnabled(this.serviceContainer);
95
const input = JSON.stringify({
96
code,
97
wholeFileContent,
0 commit comments