tidied up dimensions and removed duplicated columns

This commit is contained in:
Jake Pullen
2024-08-29 09:23:30 +01:00
parent d999a8175c
commit 9e7ff808a5
3 changed files with 72 additions and 54 deletions
+2 -2
View File
@@ -8,7 +8,7 @@ import logging.config
import logging.handlers
import config.exit_codes as ec
from dash_app import app
#from dash_app import app
from pipeline.pipeline_main import pipeline_main
def set_up_logging():
@@ -58,7 +58,7 @@ config['BUDGET_ID'] = BUDGET_ID
if __name__ == '__main__':
try:
pipeline_main(config)
app.run() #debug=True)
# app.run() #debug=True)
except SystemExit as e:
exit_code = e.code
if exit_code == ec.SUCCESS: