From 20d566345e3f9a6ed01583a91d362ade5f9afdbe Mon Sep 17 00:00:00 2001 From: Cullen Date: Wed, 12 Jun 2024 17:14:27 -0500 Subject: [PATCH] fix: govt type --- homeharvest/core/scrapers/models.py | 1 + pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/homeharvest/core/scrapers/models.py b/homeharvest/core/scrapers/models.py index e5c46bd..8cff41d 100644 --- a/homeharvest/core/scrapers/models.py +++ b/homeharvest/core/scrapers/models.py @@ -34,6 +34,7 @@ class PropertyType(Enum): APARTMENT = "APARTMENT" BUILDING = "BUILDING" COMMERCIAL = "COMMERCIAL" + GOVERNMENT = "GOVERNMENT" CONDO_TOWNHOME = "CONDO_TOWNHOME" CONDO_TOWNHOME_ROWHOME_COOP = "CONDO_TOWNHOME_ROWHOME_COOP" CONDO = "CONDO" diff --git a/pyproject.toml b/pyproject.toml index bacda4c..5efa239 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "homeharvest" -version = "0.3.30" +version = "0.3.31" description = "Real estate scraping library" authors = ["Zachary Hampton ", "Cullen Watson "] homepage = "https://github.com/Bunsly/HomeHarvest"