Skip to content

Commit b93586b

Browse files
committed
Fix lint
1 parent baf3324 commit b93586b

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/notebook.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { dirname } from 'path';
55
import getPort = require('get-port');
66

77
interface REvalOutput {
8-
type: "output" | "error";
8+
type: 'output' | 'error';
99
result: string;
1010
}
1111

@@ -84,7 +84,7 @@ class RKernel {
8484

8585
client.on('error', (err) => {
8686
reject({
87-
type: "error",
87+
type: 'error',
8888
result: [
8989
err.message
9090
],
@@ -304,7 +304,7 @@ export class RNotebookProvider implements vscode.NotebookContentProvider, vscode
304304
cell.metadata.runStartTime = start;
305305
cell.metadata.executionOrder = ++this.runIndex;
306306
const output = await notebook.eval(cell);
307-
if (output.type === "error") {
307+
if (output.type === 'error') {
308308
throw new Error(output.result);
309309
}
310310
cell.outputs = [{

0 commit comments

Comments
 (0)