Skip to content

Commit

Permalink
Added type to all WV sessions
Browse files Browse the repository at this point in the history
  • Loading branch information
showerst committed May 19, 2016
1 parent 9264311 commit 4c6b072
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions openstates/wv/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,26 +31,32 @@
],
'session_details': {
'2011': {'display_name': '2011 Regular Session',
'_scraped_name': '2011'
'type': 'primary',
'_scraped_name': '2011'
},
'2012': {'display_name': '2012 Regular Session',
'type': 'primary',
'_scraped_name': '2012'
},
'2013': {'display_name': '2013 Regular Session',
'type': 'primary',
'_scraped_name': '2013'
},
'2014': {'display_name': '2014 Regular Session',
'type': 'primary',
'_scraped_name': '2014'
},
'2015': {'display_name': '2015 Regular Session',
'type': 'primary',
'_scraped_name': '2015'
},
'2016': {'display_name': '2016 Regular Session',
'type': 'primary',
'_scraped_name': '2016'
},
'20161S': {'display_name': '2016 First Special Session',
'_scraped_name': '2016',
'type':'special',
'_scraped_name': '2016',
'_special_name': '1X'
},
},
Expand Down

0 comments on commit 4c6b072

Please sign in to comment.