File tree Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -35,14 +35,14 @@ tests = [
35
35
" pyvista==0.43.3" ,
36
36
" matplotlib==3.8.3" ,
37
37
" numpy==1.26.4" ,
38
- " pytest==8.0.1 " ,
38
+ " pytest==8.0.2 " ,
39
39
" pytest-cov==4.1.0" ,
40
40
" joblib==1.3.2" ,
41
- " pandas==2.2.0 " ,
41
+ " pandas==2.2.1 " ,
42
42
" openpyxl==3.1.2" ,
43
43
" scikit-learn==1.4.1.post1" ,
44
44
" pytest-xdist==3.5.0" ,
45
- " ipython==8.22.1 " ,
45
+ " ipython==8.22.2 " ,
46
46
]
47
47
doc = [
48
48
" recommonmark==0.7.1" ,
@@ -65,7 +65,7 @@ doc = [
65
65
" ipywidgets==8.1.2" ,
66
66
" joblib==1.3.2" ,
67
67
" scikit-learn==1.4.1.post1" ,
68
- " ipython==8.22.1 " ,
68
+ " ipython==8.22.2 " ,
69
69
" jupyterlab==4.1.2" ,
70
70
" sphinx-jinja==2.0.2" ,
71
71
" sphinx-autoapi==3.0.0" ,
Original file line number Diff line number Diff line change @@ -433,8 +433,8 @@ def save_file(self):
433
433
def quit (self ):
434
434
"""Delete remote instance."""
435
435
436
- if self .pim_client is not None :
437
- self .pim_client .close ()
438
436
if self .remote_instance is not None :
439
437
self .remote_instance .delete ()
438
+ if self .pim_client is not None :
439
+ self .pim_client .close ()
440
440
return
Original file line number Diff line number Diff line change @@ -350,10 +350,10 @@ def quit(self):
350
350
command and continues running.
351
351
"""
352
352
self .logger .debug ("quit" )
353
- if self .pim_client is not None :
354
- self .pim_client .close ()
355
353
if self .remote_instance is not None :
356
354
self .remote_instance .delete ()
355
+ if self .pim_client is not None :
356
+ self .pim_client .close ()
357
357
request = dynasolver_pb2 .QuitServer ()
358
358
# ALWAYS returns ACK, so don't bother checking
359
359
self .stub .quit_server (request )
You can’t perform that action at this time.
0 commit comments