Skip to content

Commit 6ea82f0

Browse files
committed
Lint
1 parent 3f4bee5 commit 6ea82f0

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

packages/jupyterlab-lsp/src/features/jump_to.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,7 @@ export class CMJumpToDefinition extends CodeMirrorIntegration {
5757
);
5858

5959
const { button } = event;
60-
if (
61-
button === 0 &&
62-
getModifierState(event, this.modifierKey)
63-
) {
60+
if (button === 0 && getModifierState(event, this.modifierKey)) {
6461
this.connection
6562
.getDefinition(virtual_position, document.document_info, false)
6663
.then(targets => {

0 commit comments

Comments
 (0)