Skip to content

Commit 0d7b08c

Browse files
committed
Jupyter integration: process new data schemas after cell execution (instead of before)
1 parent 2ba8fff commit 0d7b08c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/kotlin/org/jetbrains/kotlinx/dataframe/jupyter/Integration.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ internal class Integration : JupyterIntegration() {
152152

153153
onClassAnnotation<DataSchema> { addDataSchemas(it) }
154154

155-
afterCellExecution { snippet, result ->
155+
beforeCellExecution {
156156
if (newDataSchemas.isNotEmpty()) {
157157
addDataSchemas(newDataSchemas)
158158
newDataSchemas.clear()

0 commit comments

Comments
 (0)