Skip to content

Commit

Permalink
ignore old sessions until they have consistent formatting
Browse files Browse the repository at this point in the history
Signed-off-by: John Seekins <[email protected]>
  • Loading branch information
John Seekins committed Aug 29, 2023
1 parent aa14f87 commit f52770f
Showing 1 changed file with 39 additions and 1 deletion.
40 changes: 39 additions & 1 deletion scrapers/gu/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ class Guam(State):
scrapers = {
"bills": GUBillScraper,
}
# sessions before 37th are missing many labels
legislative_sessions = [
{
"_scraped_name": "37th",
Expand All @@ -16,7 +17,44 @@ class Guam(State):
"active": True,
},
]
ignored_scraped_sessions = []
ignored_scraped_sessions = [
"36th Guam Legislature",
"35th Guam Legislature",
"34th Guam Legislature",
"33th Guam Legislature",
"32th Guam Legislature",
"31th Guam Legislature",
"30th Guam Legislature",
"29th Guam Legislature",
"28th Guam Legislature",
"27th Guam Legislature",
"26th Guam Legislature",
"25th Guam Legislature",
"24th Guam Legislature",
"23th Guam Legislature",
"22th Guam Legislature",
"21th Guam Legislature",
"20th Guam Legislature",
"19th Guam Legislature",
"18th Guam Legislature",
"17th Guam Legislature",
"16th Guam Legislature",
"15th Guam Legislature",
"14th Guam Legislature",
"13th Guam Legislature",
"12th Guam Legislature",
"11th Guam Legislature",
"10th Guam Legislature",
"9th Guam Legislature",
"8th Guam Legislature",
"7th Guam Legislature",
"6th Guam Legislature",
"5th Guam Legislature",
"4th Guam Legislature",
"3rd Guam Legislature",
"2nd Guam Legislature",
"1st Guam Legislature",
]

def get_session_list(self):
return [s["identifier"] for s in self.legislative_sessions]

0 comments on commit f52770f

Please sign in to comment.