Skip to content

Commit 0390029

Browse files
committed
remove default parameter from function call
1 parent b9d6402 commit 0390029

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/extension.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -497,7 +497,7 @@ export async function activate(context: ExtensionContext): Promise<PythonEnviron
497497
const execString = getShellCommandAsString(identifyTerminalShell(terminal), [
498498
{ executable: petPath, args: [command.subcommand, ...(command.args || [])] },
499499
]);
500-
terminal.sendText(execString, true);
500+
terminal.sendText(execString);
501501
traceInfo(`Running PET ${command.subcommand} command: ${execString}`);
502502
}
503503
} catch (error) {

0 commit comments

Comments
 (0)