From 031ccf0aa89b92ddd827c6f58acab7261942f7ea Mon Sep 17 00:00:00 2001 From: Isaac Slavitt Date: Wed, 25 May 2016 14:37:33 -0400 Subject: [PATCH] Fix imports, closes #27 --- docs/docs/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/index.md b/docs/docs/index.md index 984e375..9f46f44 100644 --- a/docs/docs/index.md +++ b/docs/docs/index.md @@ -202,7 +202,7 @@ If you look at the stub script in `src/data/make_dataset.py`, it uses a package ```python # src/data/dotenv_example.py -from os.path import join, dirname +import os from dotenv import load_dotenv, find_dotenv # find .env automagically by walking up directories until it's found