measure_station_time_up: Remove empty else clause

Signed-off-by: Matthew Stidham <stidmatt@gmail.com>
This commit is contained in:
Matthew Stidham
2021-11-24 17:20:37 -08:00
parent dce4488777
commit a952c392fb

View File

@@ -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__":