Skip to content

Commit bc6b60d

Browse files
authored
Fixing lint error (#159)
1 parent a7d7231 commit bc6b60d

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

src/notebook-factory/notebook-factory.ts

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -380,10 +380,15 @@ NotebookActions.outputCleared.connect((sender, args) => {
380380
method: 'DELETE'
381381
})
382382
.then(() => {
383-
console.debug(`Successfully cleared outputs from disk for cell ${cellId}`);
383+
console.debug(
384+
`Successfully cleared outputs from disk for cell ${cellId}`
385+
);
384386
})
385387
.catch((error: Error) => {
386-
console.error(`Failed to clear outputs from disk for cell ${cellId}:`, error);
388+
console.error(
389+
`Failed to clear outputs from disk for cell ${cellId}:`,
390+
error
391+
);
387392
});
388393
} catch (error: unknown) {
389394
console.error('Error in disk output clearing process:', error);

0 commit comments

Comments
 (0)