From a5e8acb61b04ecaee031fcc9ab9c24a05a2e2e19 Mon Sep 17 00:00:00 2001 From: Chuck SmileyRekiere Date: Fri, 17 Dec 2021 14:14:31 -0700 Subject: [PATCH] create_station_from_df.py : updated the argument from df to --df Signed-off-by: Chuck SmileyRekiere --- py-scripts/create_station_from_df.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py-scripts/create_station_from_df.py b/py-scripts/create_station_from_df.py index 04741ecf..6f5826d7 100755 --- a/py-scripts/create_station_from_df.py +++ b/py-scripts/create_station_from_df.py @@ -97,7 +97,7 @@ def main(): --debug ''') required = parser.add_argument_group('required arguments') - required.add_argument('df', help='Which file do you want to build stations off of?', required=True) + required.add_argument('--df', help='Which file do you want to build stations off of?', required=True) args = parser.parse_args() df = pd.read_csv(args.df)