mirror of
https://github.com/Bunsly/HomeHarvest.git
synced 2026-03-06 04:24:29 -08:00
fix: lat/long KeyError
This commit is contained in:
@@ -94,8 +94,8 @@ class RedfinScraper(Scraper):
|
||||
price_per_sqft=get_value("pricePerSqFt"),
|
||||
price=get_value("price"),
|
||||
mls_id=get_value("mlsId"),
|
||||
latitude=home["latLong"]["latitude"] if "latLong" in home else None,
|
||||
longitude=home["latLong"]["longitude"] if "latLong" in home else None,
|
||||
latitude=home["latLong"]["latitude"] if "latLong" in home and "latitude" in home["latLong"] else None,
|
||||
longitude = home["latLong"]["longitude"] if "latLong" in home and "longitude" in home["latLong"] else None
|
||||
)
|
||||
|
||||
def _parse_building(self, building: dict) -> Property:
|
||||
|
||||
Reference in New Issue
Block a user