From b55c521a8a1eb5e533771a81f809fe1cb26c0215 Mon Sep 17 00:00:00 2001 From: Bryan Nonni Date: Fri, 17 Dec 2021 18:32:33 -0500 Subject: [PATCH] Chatper5.ipynb: Exercise 6 needs `import tx` Without re-importing `tx` in the Exercise 6 cell, it throws the following error `TypeError: reload() argument must be a module` --- code-ch05/Chapter5.ipynb | 1 + 1 file changed, 1 insertion(+) diff --git a/code-ch05/Chapter5.ipynb b/code-ch05/Chapter5.ipynb index 16f1aaf1..ae43b0c6 100644 --- a/code-ch05/Chapter5.ipynb +++ b/code-ch05/Chapter5.ipynb @@ -193,6 +193,7 @@ "source": [ "# Exercise 6\n", "\n", + "import tx\n", "reload(tx)\n", "run(tx.TxTest(\"test_fee\"))" ]