From 2e3e833d4b951d734d0f6e534554f23f0a27255d Mon Sep 17 00:00:00 2001 From: Hanna Sababa Date: Fri, 30 Mar 2018 00:06:13 +0300 Subject: [PATCH] Removed unused imports --- ...ng-Libs-and-Testing-That-They-Are-Working.ipynb | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/1-1-Downloading-Libs-and-Testing-That-They-Are-Working.ipynb b/1-1-Downloading-Libs-and-Testing-That-They-Are-Working.ipynb index 3417a0a..04672e8 100644 --- a/1-1-Downloading-Libs-and-Testing-That-They-Are-Working.ipynb +++ b/1-1-Downloading-Libs-and-Testing-That-They-Are-Working.ipynb @@ -29,17 +29,15 @@ } ], "source": [ - "import numpy as np # https://www.scipy.org/install.html\n", - "import pandas as pd # https://pandas.pydata.org/pandas-docs/stable/install.html\n", - "import matplotlib.pyplot as plt # https://matplotlib.org/downloads.html\n", - "import seaborn as sns # https://seaborn.pydata.org/installing.html\n", "import nltk # https://www.nltk.org/install.html\n", - "import langdetect # https://pypi.python.org/pypi/langdetect\n", - "import langid # https://github.com/saffsd/langid.py\n", + "import numpy # https://www.scipy.org/install.html\n", + "import matplotlib.pyplot # https://matplotlib.org/downloads.html\n", "import tweepy # https://github.com/tweepy/tweepy\n", - "import gensim # https://radimrehurek.com/gensim/install.html\n", "import TwitterSearch # https://github.com/ckoepp/TwitterSearch\n", - "import unidecode # https://pypi.python.org/pypi/Unidecode" + "import unidecode # https://pypi.python.org/pypi/Unidecode\n", + "import langdetect # https://pypi.python.org/pypi/langdetect\n", + "import langid # https://github.com/saffsd/langid.py\n", + "import gensim # https://radimrehurek.com/gensim/install.html" ] }, {