From a952c392fb2f86178c2dbcb8cdfaa53e4c09f07c Mon Sep 17 00:00:00 2001 From: Matthew Stidham Date: Wed, 24 Nov 2021 17:20:37 -0800 Subject: [PATCH] measure_station_time_up: Remove empty else clause Signed-off-by: Matthew Stidham --- py-scripts/measure_station_time_up.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/py-scripts/measure_station_time_up.py b/py-scripts/measure_station_time_up.py index 109b4ea7..38b02a44 100755 --- a/py-scripts/measure_station_time_up.py +++ b/py-scripts/measure_station_time_up.py @@ -193,9 +193,7 @@ Command example: if 'csv' in args.report_file: df.to_csv(args.report_file) if 'xlsx' in args.report_file: - df.to_excel(args.report_file) - else: - + df.to_excel(args.report_file) if __name__ == "__main__":