Skip to content

Commit

Permalink
Fix/remote repo url (#190)
Browse files Browse the repository at this point in the history
* fix: add remoteRepoUrl from target

* fix: don't include in next url
  • Loading branch information
nathan-roys authored Aug 16, 2023
1 parent 7dd0e66 commit 92b8973
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pysnyk"
version = "0.9.10"
version = "0.9.11"
description = "A Python client for the Snyk API"
authors = [
"Gareth Rushgrove <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion snyk/managers.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ def _query(self, tags: List[Dict[str, str]] = [], next_url: str = None):
# Append the issue count param to the params if this is the first page
if not next_url:
params["meta.latest_issue_counts"] = "true"
params["expand"] = "target"
params["expand"] = "target"

# And lastly, make the API call
resp = self.client.get(
Expand Down

0 comments on commit 92b8973

Please sign in to comment.