Skip to content

Commit

Permalink
Fix exit (#149)
Browse files Browse the repository at this point in the history
  • Loading branch information
robertnishihara authored and edoakes committed Oct 10, 2019
1 parent 67a9a41 commit 89d3a0c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion exercises/colab01-03.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"\n",
"# A hack to force the runtime to restart, needed to include the above dependencies.\n",
"import os\n",
"os._exit()"
"os._exit(0)"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion exercises/colab04-05.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"\n",
"# A hack to force the runtime to restart, needed to include the above dependencies.\n",
"import os\n",
"os._exit()"
"os._exit(0)"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion exercises/colab06-07.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"\n",
"# A hack to force the runtime to restart, needed to include the above dependencies.\n",
"import os\n",
"os._exit()"
"os._exit(0)"
]
},
{
Expand Down

0 comments on commit 89d3a0c

Please sign in to comment.