diff --git a/homeharvest/core/scrapers/realtor/__init__.py b/homeharvest/core/scrapers/realtor/__init__.py index 5f9ca93..761970b 100644 --- a/homeharvest/core/scrapers/realtor/__init__.py +++ b/homeharvest/core/scrapers/realtor/__init__.py @@ -535,7 +535,7 @@ def process_property(result: dict) -> Property | None: return property_id = result["property_id"] - prop_details = self.get_prop_details(property_id) + prop_details = self.get_prop_details(property_id) if self.extra_property_data else {} realty_property = Property( mls=mls, @@ -647,7 +647,7 @@ def search(self): total = result["total"] homes = result["properties"] - with ThreadPoolExecutor(max_workers=10) as executor: + with ThreadPoolExecutor() as executor: futures = [ executor.submit( self.general_search, diff --git a/pyproject.toml b/pyproject.toml index 83351c1..76efd96 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "homeharvest" -version = "0.3.31" +version = "0.3.32" description = "Real estate scraping library" authors = ["Zachary Hampton ", "Cullen Watson "] homepage = "https://github.com/Bunsly/HomeHarvest"