fix: remove self.proxy

This commit is contained in:
Cullen Watson
2023-09-19 15:49:50 -05:00
parent 1f0feb836d
commit cdf41fe9f2

View File

@@ -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]:
...