Skip to content

Commit

Permalink
Import urllib directly instead of from six.moves, as we move away fro…
Browse files Browse the repository at this point in the history
…m Python 2
  • Loading branch information
ageron committed Oct 12, 2019
1 parent be77cb4 commit 8b4a4ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 13_loading_and_preprocessing_data.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -2167,7 +2167,7 @@
"source": [
"import os\n",
"import tarfile\n",
"from six.moves import urllib\n",
"import urllib\n",
"\n",
"DOWNLOAD_ROOT = \"https://raw.githubusercontent.com/ageron/handson-ml2/master/\"\n",
"HOUSING_PATH = os.path.join(\"datasets\", \"housing\")\n",
Expand Down

0 comments on commit 8b4a4ac

Please sign in to comment.