Skip to content

Commit 4569690

Browse files
committed
Lint
1 parent 1015a51 commit 4569690

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/index.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,9 @@ function triggerNotification(
6868
) {
6969
const { startTime, endTime, index: cellIndex } = executionMetadata;
7070
const codeCellModel = cell.model as ICodeCellModel;
71-
const cellDuration = moment.utc(moment(endTime).diff(startTime)).format("HH:mm:ss");
71+
const cellDuration = moment
72+
.utc(moment(endTime).diff(startTime))
73+
.format('HH:mm:ss');
7274
const diffSeconds = moment.duration(cellDuration).asSeconds();
7375
console.log(cellDuration, diffSeconds);
7476
if (diffSeconds >= minimumCellExecutionTime) {

0 commit comments

Comments
 (0)