Skip to content

Commit aeae150

Browse files
committed
lint
1 parent 6154a5d commit aeae150

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

src/index.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -941,14 +941,18 @@ const completionStatus: JupyterFrontEndPlugin<void> = {
941941
activate: (
942942
app: JupyterFrontEnd,
943943
settingsModel: AISettingsModel,
944-
statusBar: IStatusBar,
944+
statusBar: IStatusBar
945945
) => {
946946
const div = document.createElement('div');
947947
div.style.width = '50px';
948948
div.style.height = '100%';
949949
div.style.backgroundColor = 'red';
950950
const item = new CompletionStatusWidget({ settingsModel });
951-
statusBar.registerStatusItem('completionState', { item , align: 'right', rank: 10 });
951+
statusBar.registerStatusItem('completionState', {
952+
item,
953+
align: 'right',
954+
rank: 10
955+
});
952956
}
953957
};
954958

style/base.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -387,4 +387,4 @@
387387

388388
.jp-ai-status-completion-disabled path {
389389
fill: var(--jp-layout-color2);
390-
}
390+
}

0 commit comments

Comments
 (0)