Skip to content

Commit 16df949

Browse files
committed
Run eslint
1 parent f9a76e7 commit 16df949

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ import { checkBrowserNotificationSettings } from './settings';
1414
function extractExecutionMetadata(metadata: IObservableJSON): [Date, Date] {
1515
const executionMetadata = Object.assign({}, metadata.get('execution') as any);
1616
const cellStartTime = new Date(
17-
executionMetadata['shell.execute_reply.started'] || executionMetadata['iopub.execute_input']
17+
executionMetadata['shell.execute_reply.started'] ||
18+
executionMetadata['iopub.execute_input']
1819
);
1920
const cellEndTime = new Date(executionMetadata['shell.execute_reply']);
2021
return [cellStartTime, cellEndTime];

0 commit comments

Comments
 (0)