Fix wrong number of arguments

This commit is contained in:
Nathaniel Nicandro 2020-09-15 12:09:46 -05:00
parent 63a1b846d6
commit b77dd297e3

View file

@ -1185,8 +1185,10 @@ execute the current cell."
(line-beginning-position) (point))
"")))
(jupyter-handle-is-complete-reply
jupyter-current-client
nil (if complete-p "complete" "incomplete") "")))
jupyter-current-client
nil '(:content
(:status (if complete-p "complete" "incomplete")
:indent "")))))
(t
(let ((res (jupyter-wait-until-received "is_complete_reply"
(let ((jupyter-inhibit-handlers '(not "is_complete_reply")))