Skip to content

Commit

Permalink
fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
DonJayamanne committed Nov 18, 2021
1 parent fec809a commit b348eea
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions src/client/datascience/jupyter/kernels/kernel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -416,15 +416,14 @@ export class Kernel implements IKernel {
const cellForErrorDisplay = this.kernelExecution.queue.length
? this.kernelExecution.queue[0]
: undefined;
void this.errorHandler
void this.errorHandler.handleKernelError(
// eslint-disable-next-line @typescript-eslint/no-explicit-any
.handleKernelError(
ex as any,
'start',
this.kernelConnectionMetadata,
this.resourceUri,
cellForErrorDisplay
); // Just a notification, so don't await this
ex as any,
'start',
this.kernelConnectionMetadata,
this.resourceUri,
cellForErrorDisplay
); // Just a notification, so don't await this
}
traceError(`failed to start INotebook in kernel, UI Disabled = ${this.startupUI.disableUI}`, ex);
this.startCancellation.cancel();
Expand Down

0 comments on commit b348eea

Please sign in to comment.