diff --git a/redfin/redfin.py b/redfin/redfin.py index 4da27e9..d749914 100644 --- a/redfin/redfin.py +++ b/redfin/redfin.py @@ -89,8 +89,8 @@ def similar_sold(self, property_id, listing_id, **kwargs): def nearby_homes(self, property_id, listing_id, **kwargs): return self.meta_property('nearbyhomes', {'propertyId': property_id, 'listingId': listing_id, **kwargs}) - def above_the_fold(self, property_id, listing_id, **kwargs): - return self.meta_property('aboveTheFold', {'propertyId': property_id, 'listingId': listing_id, **kwargs}) + def above_the_fold(self, property_id, **kwargs): + return self.meta_property('aboveTheFold', {'propertyId': property_id, **kwargs}) def property_parcel(self, property_id, listing_id, **kwargs): return self.meta_property('propertyParcelInfo', {'propertyId': property_id, 'listingId': listing_id, **kwargs}, page=True)