Skip to content

Commit 74e3e09

Browse files
authored
don't store Out in itself (#1083)
1 parent 4bd9215 commit 74e3e09

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/execute_request.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ function execute_request(socket, msg)
7171

7272
if silent
7373
result = nothing
74-
elseif result !== nothing
74+
elseif (result !== nothing) && (result !== Out)
7575
if store_history
7676
Out[n] = result
7777
end

0 commit comments

Comments
 (0)