Skip to content

Commit

Permalink
Merge pull request #163 from sdfordham/master
Browse files Browse the repository at this point in the history
Resolve (#162)
  • Loading branch information
AnthonyBloomer authored Apr 27, 2023
2 parents ff41ab1 + 8d4ac82 commit 9884763
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions daftlistings/daft.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ def __init__(self):
self._ranges = list()
self._geoFilter = dict()
self._sort_filter = dict()
self._paging = self._PAGE_0
self._total_results = 0

@property
Expand Down Expand Up @@ -241,7 +240,7 @@ def _make_payload(self) -> Dict:
payload["geoFilter"] = self._geoFilter
if self._sort_filter:
payload["sort"] = self._sort_filter
payload["paging"] = self._paging
payload["paging"] = deepcopy(self._PAGE_0)
return payload

def search(self, max_pages: Optional[int] = None) -> List[Listing]:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def run(self):


setup(name='daftlistings',
version='2.0.2',
version='2.0.3',
description='A library that enables programmatic interaction with daft.ie. Daft.ie has nationwide coverage and contains about 80% of the total available properties in Ireland.',
long_description=long_descr,
long_description_content_type='text/markdown',
Expand Down

0 comments on commit 9884763

Please sign in to comment.