diff --git a/pyproject.toml b/pyproject.toml index 9b8c65b..f7cbb4b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pysnyk" -version = "0.9.16" +version = "0.9.17" description = "A Python client for the Snyk API" authors = [ "Gareth Rushgrove ", diff --git a/snyk/managers.py b/snyk/managers.py index 4db2d89..0d59233 100644 --- a/snyk/managers.py +++ b/snyk/managers.py @@ -191,7 +191,9 @@ def _rest_to_v1_response_format(self, project): def _query(self, tags: List[Dict[str, str]] = [], next_url: str = None): projects = [] - params = {} + params: dict = { + "limit": 100, + } if self.instance: path = "/orgs/%s/projects" % self.instance.id if not next_url else next_url