File tree 6 files changed +184
-281
lines changed
packages/base-manager/src
python/jupyterlab_widgets
6 files changed +184
-281
lines changed Original file line number Diff line number Diff line change @@ -217,7 +217,7 @@ export abstract class ManagerBase implements IWidgetManager {
217
217
async get_model ( model_id : string ) : Promise < WidgetModel > {
218
218
let i = 0 ;
219
219
while ( ! this . _models [ model_id ] && i < this . _sleepTimes . length ) {
220
- new Promise ( ( r ) => setTimeout ( r , this . _sleepTimes [ i ++ ] ) )
220
+ new Promise ( ( resolve ) => setTimeout ( resolve , this . _sleepTimes [ i ++ ] ) ) ;
221
221
}
222
222
const modelPromise = this . _models [ model_id ] ;
223
223
if ( modelPromise === undefined ) {
Original file line number Diff line number Diff line change 64
64
"@jupyterlab/services" : " ^6.0.0 || ^7.0.0" ,
65
65
"@jupyterlab/settingregistry" : " ^3.0.0 || ^4.0.0" ,
66
66
"@jupyterlab/translation" : " ^3.0.0 || ^4.0.0" ,
67
- "@lumino/algorithm" : " ^1.11.1 || ^2.0.0" ,
68
67
"@lumino/coreutils" : " ^1.11.1 || ^2.1" ,
69
68
"@lumino/disposable" : " ^1.10.1 || ^2.1" ,
70
69
"@lumino/properties" : " ^2.0.1" ,
76
75
},
77
76
"devDependencies" : {
78
77
"@jupyterlab/builder" : " ^3.0.0 || ^4.0.0" ,
79
- "@jupyterlab/cells" : " ^3.0.0 || ^4.0.0" ,
80
78
"@types/jquery" : " ^3.5.16" ,
81
79
"@types/semver" : " ^7.3.6" ,
82
80
"@typescript-eslint/eslint-plugin" : " ^5.8.0" ,
You can’t perform that action at this time.
0 commit comments