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 = [
4848 " matlab-proxy>=0.10.0" ,
4949 " psutil" ,
5050 " requests" ,
51+ " ipykernel"
5152]
5253
5354[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.
22# Script to help users troubleshoot common errors with the environment
33# This script is designed to be used in standalone manner and to maintain
44# that, it doesn't use utility functions present in the parent repository.
@@ -323,9 +323,11 @@ def find_executable(*args) -> list:
323323 output .append (
324324 cmd_output (
325325 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+ ),
329331 True if executable_path is None else False ,
330332 )
331333 )
You can’t perform that action at this time.
0 commit comments