Skip to content

Commit

Permalink
Update src/client/terminals/codeExecution/helper.ts
Browse files Browse the repository at this point in the history
Co-authored-by: Karthik Nadig <[email protected]>
  • Loading branch information
anthonykim1 and karthiknadig authored Oct 10, 2023
1 parent 004dab2 commit 99ee2ce
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/client/terminals/codeExecution/helper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,7 @@ 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;
const smartSendExperimentEnabledVal = pythonSmartSendEnabled(this.serviceContainer)
? pythonSmartSendEnabled(this.serviceContainer)
: false;
const smartSendExperimentEnabledVal = pythonSmartSendEnabled(this.serviceContainer);
const input = JSON.stringify({
code,
wholeFileContent,
Expand Down

0 comments on commit 99ee2ce

Please sign in to comment.