@@ -81,7 +81,7 @@ class MockJupyterServer implements INotebookServer {
8181 throw  new  Error ( 'Method not implemented' ) ; 
8282 } 
8383
84-  public  async  getCompletion ( _cellCode : string ,  _offsetInCode : number ,  _cancelToken ?: CancellationToken )   : Promise < INotebookCompletion >  { 
84+  public  async  getCompletion ( _cellCode : string ,  _offsetInCode : number ,  _cancelToken ?: CancellationToken ) : Promise < INotebookCompletion >  { 
8585 throw  new  Error ( 'Method not implemented' ) ; 
8686 } 
8787 public  execute ( _code : string ,  _f : string ,  _line : number ) : Promise < ICell [ ] >  { 
@@ -113,15 +113,15 @@ class MockJupyterServer implements INotebookServer {
113113 return  Promise . resolve ( ) ; 
114114 } 
115115
116-  public  getSysInfo ( )   : Promise < ICell  |  undefined >  { 
116+  public  getSysInfo ( ) : Promise < ICell  |  undefined >  { 
117117 return  Promise . resolve ( undefined ) ; 
118118 } 
119119
120-  public  interruptKernel ( _timeout : number )   : Promise < InterruptResult >  { 
120+  public  interruptKernel ( _timeout : number ) : Promise < InterruptResult >  { 
121121 throw  new  Error ( 'Method not implemented' ) ; 
122122 } 
123123
124-  public  async  dispose ( )   : Promise < void >  { 
124+  public  async  dispose ( ) : Promise < void >  { 
125125 if  ( this . launchInfo )  { 
126126 this . launchInfo . connectionInfo . dispose ( ) ;  // This should kill the process that's running 
127127 this . launchInfo  =  undefined ; 
@@ -145,7 +145,7 @@ class DisposableRegistry implements IDisposableRegistry, IAsyncDisposableRegistr
145145 this . disposables . push ( disposable ) ; 
146146 } 
147147
148-  public  dispose  =  async  ( )   : Promise < void >  =>  { 
148+  public  dispose  =  async  ( ) : Promise < void >  =>  { 
149149 for  ( const  disposable  of  this . disposables )  { 
150150 if  ( ! disposable )  { 
151151 continue ; 
@@ -235,7 +235,7 @@ suite('Jupyter Execution', async () => {
235235 return  cleanupDisposables ( ) ; 
236236 } ) ; 
237237
238-  function  cleanupDisposables ( )   : Promise < void >  { 
238+  function  cleanupDisposables ( ) : Promise < void >  { 
239239 return  disposableRegistry . dispose ( ) ; 
240240 } 
241241
@@ -326,9 +326,9 @@ suite('Jupyter Execution', async () => {
326326 . returns ( result ) ; 
327327 const  withModuleArgs  =  [ '-m' ,  module ,  ...args ] ; 
328328 service . setup ( x  =>  x . exec ( 
329-    TypeMoq . It . is ( a  =>  argsMatch ( withModuleArgs ,  a ) ) , 
330-    TypeMoq . It . isAny ( ) ) ) 
331-    . returns ( result ) ; 
329+  TypeMoq . It . is ( a  =>  argsMatch ( withModuleArgs ,  a ) ) , 
330+  TypeMoq . It . isAny ( ) ) ) 
331+  . returns ( result ) ; 
332332 } 
333333
334334 function  setupPythonServiceExecObservable ( service : TypeMoq . IMock < IPythonExecutionService > ,  module : string ,  args : ( string  |  RegExp ) [ ] ,  stderr : string [ ] ,  stdout : string [ ] )  { 
@@ -548,7 +548,7 @@ suite('Jupyter Execution', async () => {
548548 errorBackgroundColor : '#FFFFFF' , 
549549 sendSelectionToInteractiveWindow : false , 
550550 showJupyterVariableExplorer : true , 
551-  variableExplorerExclude : 'module;builtin_function_or_method' , 
551+  variableExplorerExclude : 'module;function; builtin_function_or_method' , 
552552 codeRegularExpression : '^(#\\s*%%|#\\s*\\<codecell\\>|#\\s*In\\[\\d*?\\]|#\\s*In\\[ \\])' , 
553553 markdownRegularExpression : '^(#\\s*%%\\s*\\[markdown\\]|#\\s*\\<markdowncell\\>)' , 
554554 allowLiveShare : false , 
@@ -664,7 +664,7 @@ suite('Jupyter Execution', async () => {
664664 // Force config change and ask again 
665665 pythonSettings . datascience . searchForJupyter  =  false ; 
666666 const  evt  =  { 
667-  affectsConfiguration ( _m : string )   : boolean  { 
667+  affectsConfiguration ( _m : string ) : boolean  { 
668668 return  true ; 
669669 } 
670670 } ; 
0 commit comments