Add docstring in make_dataset; closes #1

This commit is contained in:
Peter Bull 2016-09-05 19:57:24 -04:00
parent 5a818e8886
commit 76930056bf
1 changed files with 3 additions and 0 deletions

View File

@ -9,6 +9,9 @@ from dotenv import find_dotenv, load_dotenv
@click.argument('input_filepath', type=click.Path(exists=True)) @click.argument('input_filepath', type=click.Path(exists=True))
@click.argument('output_filepath', type=click.Path()) @click.argument('output_filepath', type=click.Path())
def main(input_filepath, output_filepath): def main(input_filepath, output_filepath):
""" Runs data processing scripts to turn raw data from (../raw) into
cleaned data ready to be analyzed (saved in ../processed).
"""
logger = logging.getLogger(__name__) logger = logging.getLogger(__name__)
logger.info('making final data set from raw data') logger.info('making final data set from raw data')