From 2fdcd831b2cdcea2fd0ebbe044df19f3a5e8b02e Mon Sep 17 00:00:00 2001 From: Yorick Barbanneau Date: Tue, 26 Apr 2022 23:05:17 +0200 Subject: [PATCH] Show times when verbose mode is activated --- csvprocess.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/csvprocess.py b/csvprocess.py index 1593ee8..f7240d6 100755 --- a/csvprocess.py +++ b/csvprocess.py @@ -307,7 +307,6 @@ if __name__ == '__main__': t.stop() t.start('Process_town') - print(statistics[['SUPERF','CODGEO']]) towns = pd.merge(towns, statistics[['CODGEO', 'SUPERF']], left_on=['COM'], @@ -327,7 +326,8 @@ if __name__ == '__main__': export_csv(indicators, args.export + '/indicateur.csv') export_csv(consolidated_stats, args.export + '/statistiques.csv') t.stop() - + + t.get_times_by_tag() t.get_total_time() sys.exit()