Changeset 35014


Ignore:
Timestamp:
2021-04-04T20:19:45+12:00 (3 years ago)
Author:
davidb
Message:

Init of rec data-structure ammended to be pre-populated with Country and Year

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/model-sites-dev/eurovision-lod/collect/eurovision/prepare/errata-categories/escwikipedia.py

    r34990 r35014  
    8484        country_year = country+str(year)
    8585       
    86         country_year_recs[country_year] = {}
     86        country_year_recs[country_year] = { "Country": country, "Year": year }
     87       
    8788                   
    8889    for key in header_to_vals.keys():
     
    157158        country_year = country + str(year)
    158159
    159         this_country_year_rec = {}
     160        this_country_year_rec = { "Country": country, "Year": year }
    160161       
    161162        for key in header_to_vals.keys():
Note: See TracChangeset for help on using the changeset viewer.