From e2a7d1eae9eaf7bcd2c457ac6723edaf8f09e4ec Mon Sep 17 00:00:00 2001 From: danDiamo <78231894+danDiamo@users.noreply.github.com> Date: Wed, 8 Dec 2021 12:48:58 -0600 Subject: [PATCH] Update utils.py -- docstring edit --- utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils.py b/utils.py index 5f7dea9af..9b7706f76 100644 --- a/utils.py +++ b/utils.py @@ -36,8 +36,8 @@ def get_url_paths_for_online_midi_corpus(url): def read_csv(inpath): """ - Reads csv file to Pandas dataframe. Returns a single-item dict, formatted per: - filename (key): dataframe (value). + Reads csv file to Pandas dataframe. Returns a two-tuple, formatted per: + (filename, dataframe). """ data = pd.read_csv(inpath, index_col=0)