File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed
packages/jupyterlab-lsp/src Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -128,7 +128,9 @@ export abstract class WidgetAdapter<T extends IDocumentWidget> {
128
128
this . status_message = new StatusMessage ( ) ;
129
129
this . isConnected = false ;
130
130
this . console = extension . console . scope ( 'WidgetAdapter' ) ;
131
- this . trans = ( extension . translator || nullTranslator ) . load ( 'jupyterlab-lsp' ) ;
131
+ this . trans = ( extension . translator || nullTranslator ) . load (
132
+ 'jupyterlab-lsp'
133
+ ) ;
132
134
133
135
// set up signal connections
134
136
this . widget . context . saveState . connect ( this . on_save_state , this ) ;
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ import { ISettingRegistry } from '@jupyterlab/settingregistry';
10
10
import { IDocumentWidget } from '@jupyterlab/docregistry' ;
11
11
import { LabIcon } from '@jupyterlab/ui-components' ;
12
12
import { Signal } from '@lumino/signaling' ;
13
- import { TranslationBundle } from '@jupyterlab/translation'
13
+ import { TranslationBundle } from '@jupyterlab/translation' ;
14
14
15
15
export interface IFeatureCommand {
16
16
/**
Original file line number Diff line number Diff line change @@ -104,8 +104,7 @@ const COMMANDS = (trans: TranslationBundle): IFeatureCommand[] => [
104
104
] ;
105
105
106
106
export class RenameCM extends CodeMirrorIntegration {
107
-
108
- public setTrans ( trans : TranslationBundle ) {
107
+ public setTrans ( trans : TranslationBundle ) {
109
108
this . trans = trans ;
110
109
}
111
110
You can’t perform that action at this time.
0 commit comments