Skip to content

Commit 4e7f81e

Browse files
committed
Linter
1 parent 7d475c8 commit 4e7f81e

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ new JupyterLab window which can be re-arranged as desired.
5959

6060
### Arrange a new sidecar with respect to another sidecar
6161

62-
The `anchor` parameter sets the position of the new sidecar relative to the
63-
notebook that opens the sidecar, by default. To open a new sidecar whose `anchor`
62+
The `anchor` parameter sets the position of the new sidecar relative to the
63+
notebook that opens the sidecar, by default. To open a new sidecar whose `anchor`
6464
is defined relative to another sidecar output, set the `ref` parameter with
6565
the instance of the reference sidecar.
6666

src/widget.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ export class SidecarModel extends output.OutputModel {
2222
title: 'Sidecar',
2323
anchor: 'right',
2424
ref: null,
25-
_widget_id: null,
26-
}
25+
_widget_id: null
26+
};
2727
}
2828

29-
get created(): Promise <void> {
29+
get created(): Promise<void> {
3030
return this._viewCreated.promise;
3131
}
3232

@@ -39,8 +39,8 @@ export class SidecarModel extends output.OutputModel {
3939
// deserialize the ref property
4040
static serializers = {
4141
...DOMWidgetModel.serializers,
42-
ref: { deserialize: unpack_models as any },
43-
}
42+
ref: { deserialize: unpack_models as any }
43+
};
4444

4545
initialize(attributes: any, options: any) {
4646
super.initialize(attributes, options);

0 commit comments

Comments
 (0)