Replies: 1 comment 2 replies
-
@mb-915 - do |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello, I'm using the new
embed
function and I want to stop execution book in the embeded notebook.Here is as an example of what I want to do :
analyze.py
select_fruit.py
(on gist : https://gist.github.com/mb-915/a9e510693bbbc49c279e1f09570cd118)
analyze.py
embedsselect_fruit.py
, and I want to stop the execution ofanalyze.py
with astop
directive inselect_fruit.py
.This example does not work : when you run the
select_fruit.py
alone, themo.stop
works as expected, but when you runanalyze.py
, the stop message is shown but the execution continues and I do not know how to make my celle dependant on thestop
of the embeded notebook (if it is possible)Due to the
await
, I'm not sure if it is possible.Beta Was this translation helpful? Give feedback.
All reactions