Skip to content

Commit

Permalink
hey
Browse files Browse the repository at this point in the history
  • Loading branch information
Kartik Raj committed Oct 21, 2023
1 parent 13f1b61 commit 9bbb25c
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -102,10 +102,7 @@ export class TerminalIndicatorPrompt implements IExtensionSingleActivationServic
}
}

function getPromptName(interpreter?: PythonEnvironment) {
if (!interpreter) {
return '';
}
function getPromptName(interpreter: PythonEnvironment) {
if (interpreter.envName) {
return `, ${l10n.t('i.e')} "(${interpreter.envName})"`;
}
Expand Down

0 comments on commit 9bbb25c

Please sign in to comment.