diff --git a/scrapers/va/__init__.py b/scrapers/va/__init__.py index e94d4f6375..e82e3e088b 100644 --- a/scrapers/va/__init__.py +++ b/scrapers/va/__init__.py @@ -199,6 +199,15 @@ class Virginia(State): "end_date": "2023-03-11", "active": True, }, + { + "_scraped_name": "2023 Special Session I", + "classification": "special", + "identifier": "2023S1", + "name": "2023, 1st Special Session", + "start_date": "2023-08-05", + "end_date": "2023-08-13", + "active": True, + }, ] ignored_scraped_sessions = [ "2021 Special Session I", diff --git a/scrapers/va/common.py b/scrapers/va/common.py index dad6c38b73..eeaee7be92 100644 --- a/scrapers/va/common.py +++ b/scrapers/va/common.py @@ -26,6 +26,7 @@ "2022": "221", "2022S1": "222", "2023": "231", + "2023S1": "232", } -COMBINED_SESSIONS = {"221": ["222", "231"]} +COMBINED_SESSIONS = {"221": ["222", "231", "232"]}