Skip to content
This repository was archived by the owner on Dec 27, 2023. It is now read-only.

Commit 533db19

Browse files
committed
Regression fix·
1 parent 5641800 commit 533db19

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Actions/ExecuteAction.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ public function call(array $header, array $content)
6666
$this->broker->send(
6767
$this->iopubSocket,
6868
'execute_result',
69-
['execution_count' => $execCount + 1, 'data' => $result, 'metadata' => new S],
69+
['execution_count' => $execCount + 1, 'data' => $result, 'metadata' => new \stdClass],
7070
$header
7171
);
7272
$this->broker->send($this->iopubSocket, 'status', ['execution_state' => 'idle'], $header);

0 commit comments

Comments
 (0)