Skip to content

Commit

Permalink
Fix co2 analysis column naming (#4410)
Browse files Browse the repository at this point in the history
  • Loading branch information
ebeers-png authored Nov 23, 2023
1 parent 36af0ae commit a7ef1b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions seed/analysis_pipelines/co2.py
Original file line number Diff line number Diff line change
Expand Up @@ -357,8 +357,8 @@ def _run_analysis(self, meter_readings_by_analysis_property_view, analysis_id):
table_name='PropertyState',
)
if created:
column.display_name = 'Average Annual CO2 (kgCO2e)',
column.column_description = 'Average Annual CO2 (kgCO2e)',
column.display_name = 'Average Annual CO2 (kgCO2e)'
column.column_description = 'Average Annual CO2 (kgCO2e)'
column.save()

column, created = Column.objects.get_or_create(
Expand Down

0 comments on commit a7ef1b1

Please sign in to comment.