From d17126475d43547b8a5de437ec89a351185e693c Mon Sep 17 00:00:00 2001 From: Ian Beauregard Date: Tue, 11 Aug 2020 09:33:51 -0400 Subject: [PATCH] Update 03_classification.ipynb Use a function parameter instead of a global constant. --- 03_classification.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/03_classification.ipynb b/03_classification.ipynb index b574513..519a16c 100644 --- a/03_classification.ipynb +++ b/03_classification.ipynb @@ -1906,12 +1906,12 @@ "def fetch_spam_data(spam_url=SPAM_URL, spam_path=SPAM_PATH):\n", " if not os.path.isdir(spam_path):\n", " os.makedirs(spam_path)\n", - " for filename, url in ((\"ham.tar.bz2\", HAM_URL), (\"spam.tar.bz2\", SPAM_URL)):\n", + " for filename, url in ((\"ham.tar.bz2\", HAM_URL), (\"spam.tar.bz2\", spam_url)):\n", " path = os.path.join(spam_path, filename)\n", " if not os.path.isfile(path):\n", " urllib.request.urlretrieve(url, path)\n", " tar_bz2_file = tarfile.open(path)\n", - " tar_bz2_file.extractall(path=SPAM_PATH)\n", + " tar_bz2_file.extractall(path=spam_path)\n", " tar_bz2_file.close()" ] },