glue-enrich-cur.py [190:199]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  )
  log.info('CLEANING UP TEMP TABLES IF THEY EXIST')
  wr.catalog.delete_table_if_exists(
    database=DATABASE_NAME,
    table='temp_cur_enriched'
  )
  wr.catalog.delete_table_if_exists(
    database=DATABASE_NAME,
    table='temp_cur_original'
  )
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



glue-enrich-cur.py [271:283]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  )

  # Once the enriched CUR data is written to S3 by Athena, we can remove the table definition the CTAS statement created in the catalog. 
  log.info('CLEANING UP TEMP TABLES IF THEY EXIST')
  wr.catalog.delete_table_if_exists(
    database=DATABASE_NAME,
    table='temp_cur_enriched'
  )
  # Also remote the table containing the original CUR data
  wr.catalog.delete_table_if_exists(
    database=DATABASE_NAME,
    table='temp_cur_original'
  )
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



