diff --git a/module2-consuming-data-from-an-api/guided-project.md b/module2-consuming-data-from-an-api/guided-project.md index 1a10c783..3be01d52 100644 --- a/module2-consuming-data-from-an-api/guided-project.md +++ b/module2-consuming-data-from-an-api/guided-project.md @@ -108,9 +108,9 @@ Import the function that we'll use to retrieve our environment varaibles from th Retrieve our API Key and API Secret and save them to variables within our REPL. -`>>> key = os.getenv('TWITTER_API_KEY')` +`>>> key = getenv('TWITTER_API_KEY')` -`>>> secret = os.getenv('TWITTER_API_KEY_SECRET')` +`>>> secret = getenv('TWITTER_API_KEY_SECRET')` Import not_tweepy so that we can use it to connect to the NotTwitter API.