From 8b7e47d6efce6a560791772c9a9121428f5deeee Mon Sep 17 00:00:00 2001 From: Dave Date: Thu, 7 Nov 2019 21:17:22 +0000 Subject: [PATCH] urllib called, but never imported added import statement for urllib package, used in the downloading data section --- 01_the_machine_learning_landscape.ipynb | 1 + 1 file changed, 1 insertion(+) diff --git a/01_the_machine_learning_landscape.ipynb b/01_the_machine_learning_landscape.ipynb index 9517ef9..026569a 100644 --- a/01_the_machine_learning_landscape.ipynb +++ b/01_the_machine_learning_landscape.ipynb @@ -124,6 +124,7 @@ "outputs": [], "source": [ "# Download the data\n", + "import urllib", "DOWNLOAD_ROOT = \"https://raw.githubusercontent.com/ageron/handson-ml2/master/\"\n", "os.makedirs(datapath, exist_ok=True)\n", "for filename in (\"oecd_bli_2015.csv\", \"gdp_per_capita.csv\"):\n",