Skip to content

Commit

Permalink
Merge pull request #5115 from openstates/wy-2025-session
Browse files Browse the repository at this point in the history
WY: Enable 2025 session
  • Loading branch information
jessemortenson authored Dec 4, 2024
2 parents 9048a89 + efbddc3 commit 18ba34d
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions scrapers/wy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,16 @@ class Wyoming(State):
"identifier": "2024",
"name": "2024 Regular Session",
"start_date": "2024-02-12",
"end_date": "2023-04-08",
"end_date": "2024-04-08",
"active": False,
},
{
"_scraped_name": "2025",
"classification": "primary",
"identifier": "2025",
"name": "2025 Regular Session",
"start_date": "2025-01-14",
"end_date": "2025-03-15",
"active": True,
},
]
Expand All @@ -156,4 +165,4 @@ class Wyoming(State):
]

def get_session_list(self):
return [str(x) for x in range(2011, 2025)]
return [str(x) for x in range(2011, 2026)]

0 comments on commit 18ba34d

Please sign in to comment.