Skip to content

Commit

Permalink
Format file
Browse files Browse the repository at this point in the history
  • Loading branch information
dhruvisompura committed Dec 19, 2024
1 parent 1e14d33 commit 84cab0c
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,9 @@ export class PythonLspOutputChannelManager {
let out = this._channels.get(key);

if (!out) {
const name = `${sessionName}: ${LSP_OUTPUT_CHANNEL_DESCRIPTOR} (${sessionMode.charAt(0).toUpperCase() + sessionMode.slice(1)})`;
const name = `${sessionName}: ${LSP_OUTPUT_CHANNEL_DESCRIPTOR} (${
sessionMode.charAt(0).toUpperCase() + sessionMode.slice(1)
})`;
out = vscode.window.createOutputChannel(name);
this._channels.set(key, out);
}
Expand Down

0 comments on commit 84cab0c

Please sign in to comment.