Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: fixed missing import statement in notebooks #677

Merged
merged 2 commits into from
Nov 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions docs/examples/closed-loop-basic/notebooks/sweetbean.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,8 @@
"metadata": {},
"outputs": [],
"source": [
"from sweetbean.sequence import Block\n",
"\n",
"# create a list of instruction stimuli for the instruction block\n",
"introduction_list = [introduction_welcome,\n",
" introduction_pictures,\n",
Expand Down Expand Up @@ -255,7 +257,7 @@
"source": [
"## Experiment Block Sequence\n",
"\n",
"Now that we have specified all of our experiment blocks, we put them together into an experiment. The function below compiles the experiment and converts it into a html file."
"Now that we have specified all of our experiment blocks, we put them together into an experiment. The function below compiles the experiment and converts it into an html file."
]
},
{
Expand Down Expand Up @@ -386,8 +388,7 @@
],
"metadata": {
"colab": {
"provenance": [],
"toc_visible": true
"provenance": []
},
"kernelspec": {
"display_name": "Python 3",
Expand Down
Loading