Writes the aggregated crosswalk table.
(aggregate_columns)
| 80 | pass |
| 81 | |
| 82 | def write_aggregate(aggregate_columns): |
| 83 | """Writes the aggregated crosswalk table.""" |
| 84 | rows = rows_from_columns(aggregate_columns) |
| 85 | rm_file(DEST_FILENAME) |
| 86 | with open(DEST_FILENAME, 'a') as fd: |
| 87 | writer = csv.writer(fd, lineterminator='\n') |
| 88 | writer.writerows(rows) |
| 89 | |
| 90 | def main(): |
| 91 | """Entry-point of the script.""" |
no test coverage detected