Tweaked template notebooks.

This commit is contained in:
Donne Martin 2015-07-31 18:48:53 -04:00
parent 691fba5ff9
commit 62e54233c6
2 changed files with 6 additions and 6 deletions

View File

@ -34,9 +34,8 @@
"source": [ "source": [
"## Constraints\n", "## Constraints\n",
"\n", "\n",
"* Does foo do anything else?\n",
"* Is it foo or bar?\n", " * No"
" * foo"
] ]
}, },
{ {

View File

@ -33,9 +33,8 @@
"source": [ "source": [
"## Constraints\n", "## Constraints\n",
"\n", "\n",
"* Does foo do anything else?\n",
"* Is it foo or bar?\n", " * No"
" * foo"
] ]
}, },
{ {
@ -114,10 +113,12 @@
" assert_equal(foo('bar'), 'bar')\n", " assert_equal(foo('bar'), 'bar')\n",
" print('Success: test_foo')\n", " print('Success: test_foo')\n",
"\n", "\n",
"\n",
"def main():\n", "def main():\n",
" test = TestFoo()\n", " test = TestFoo()\n",
" test.test_foo()\n", " test.test_foo()\n",
"\n", "\n",
"\n",
"if __name__ == '__main__':\n", "if __name__ == '__main__':\n",
" main()" " main()"
] ]