Skip to content

Commit

Permalink
Remove empty initializer
Browse files Browse the repository at this point in the history
Co-authored-by: David Brochart <[email protected]>
  • Loading branch information
krassowski and davidbrochart authored Apr 11, 2024
1 parent 68ec61d commit 2487dc3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jupyter_ydoc/ynotebook.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ def create_ycell(self, value: Dict[str, Any]) -> Map:
del cell["attachments"]
elif cell_type == "code":
cell["outputs"] = Array(cell.get("outputs", []))
cell["pending_requests"] = Array([])
cell["pending_requests"] = Array()

return Map(cell)

Expand Down

0 comments on commit 2487dc3

Please sign in to comment.