diff --git a/homeharvest/core/scrapers/__init__.py b/homeharvest/core/scrapers/__init__.py index ad58f78..2bdf972 100644 --- a/homeharvest/core/scrapers/__init__.py +++ b/homeharvest/core/scrapers/__init__.py @@ -20,10 +20,6 @@ class Scraper: self.listing_type = scraper_input.listing_type self.site_name = scraper_input.site_name - self.proxy = (lambda p: {"http": p, "https": p} if p else None)( - scraper_input.proxy - ) - def search(self) -> list[Property]: ...