Skip to content

Commit

Permalink
Make check_inbox_pull_requests to return paged generator (atlassian-a…
Browse files Browse the repository at this point in the history
…pi#1188)

Make check_inbox_pull_requests to return paged generator
  • Loading branch information
noorul authored Jun 19, 2023
1 parent f5f30e1 commit d383531
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion atlassian/bitbucket/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2119,7 +2119,7 @@ def check_inbox_pull_requests(self, start=0, limit=None, role=None):
params["limit"] = limit
if role:
params["role"] = role
return self.get(url, params=params)
return self._get_paged(url, params=params)

def _url_repo_compare(self, project_key, repository_slug):
url = "{}/compare".format(self._url_repo(project_key, repository_slug))
Expand Down

0 comments on commit d383531

Please sign in to comment.