File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -48,6 +48,7 @@ dependencies = [
48
48
" matlab-proxy>=0.10.0" ,
49
49
" psutil" ,
50
50
" requests" ,
51
+ " ipykernel"
51
52
]
52
53
53
54
[project .urls ]
Original file line number Diff line number Diff line change 1
- # Copyright 2023 The MathWorks, Inc.
1
+ # Copyright 2023-2024 The MathWorks, Inc.
2
2
# Script to help users troubleshoot common errors with the environment
3
3
# This script is designed to be used in standalone manner and to maintain
4
4
# that, it doesn't use utility functions present in the parent repository.
@@ -323,9 +323,11 @@ def find_executable(*args) -> list:
323
323
output .append (
324
324
cmd_output (
325
325
name ,
326
- real_executable_path
327
- if real_executable_path is not None
328
- else executable_path ,
326
+ (
327
+ real_executable_path
328
+ if real_executable_path is not None
329
+ else executable_path
330
+ ),
329
331
True if executable_path is None else False ,
330
332
)
331
333
)
You can’t perform that action at this time.
0 commit comments