Skip to content

Commit

Permalink
Update saving and loading.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
Pangoraw authored Oct 26, 2023
1 parent ae1d60f commit 2352885
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/notebook/saving and loading.jl
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ function save_notebook(io::IO, notebook::Notebook)
if length(cells_ordered) != length(notebook.cells)
cells = notebook.cells
updated_topo = updated_topology(notebook.topology, notebook, cells)
cells_ordered = collect((updated_topo, cells))
cells_ordered = collect(topological_order(updated_topo, cells))
end

for c in cells_ordered
Expand Down

0 comments on commit 2352885

Please sign in to comment.