Skip to content

Commit 2b556d2

Browse files
committed
Suppress display of cleanup object
1 parent 839393c commit 2b556d2

File tree

1 file changed

+1
-1
lines changed
  • src/jupyter_matlab_kernel/matlab/+jupyter

1 file changed

+1
-1
lines changed

src/jupyter_matlab_kernel/matlab/+jupyter/execute.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
% Disable Hotlinks in the output captured. The hotlinks do not have a purpose
4747
% in Jupyter notebooks.
4848
hotlinksPreviousState = feature('hotlinks','off');
49-
hotlinksCleanupObj = onCleanup(@() feature('hotlinks', hotlinksPreviousState))
49+
hotlinksCleanupObj = onCleanup(@() feature('hotlinks', hotlinksPreviousState));
5050

5151
% Use the Live editor API for execution of MATLAB code and capturing the outputs
5252
resp = jsondecode(matlab.internal.editor.evaluateSynchronousRequest(request));

0 commit comments

Comments
 (0)