Skip to content

Commit

Permalink
Linter
Browse files Browse the repository at this point in the history
  • Loading branch information
martinRenou committed Dec 15, 2022
1 parent 6d39c2e commit c5f19bb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/factory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,5 @@ export class JupyterCadWidgetFactory extends ABCWidgetFactory<
});
}

private _currentUser: User.IManager
private _currentUser: User.IManager;
}
2 changes: 1 addition & 1 deletion src/mainview.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ const SELECTED_MESH_COLOR = new THREE.Color('#AB5118');

interface IProps {
context: DocumentRegistry.IContext<JupyterCadModel>;
currentUser: User.IManager
currentUser: User.IManager;
}

interface IStates {
Expand Down
5 changes: 4 additions & 1 deletion src/widget.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,10 @@ export class JupyterCadPanel extends ReactWidget {
*
* @param context - The documents context.
*/
constructor(context: DocumentRegistry.IContext<JupyterCadModel>, currentUser: User.IManager) {
constructor(
context: DocumentRegistry.IContext<JupyterCadModel>,
currentUser: User.IManager
) {
super();
this.addClass('jp-jupytercad-panel');
this._context = context;
Expand Down

0 comments on commit c5f19bb

Please sign in to comment.