Skip to content

Commit

Permalink
Fixed bug in PM
Browse files Browse the repository at this point in the history
  • Loading branch information
jake-lindsay-tfs committed Dec 9, 2024
1 parent 9dedb1b commit 3f3be46
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 = "qualysdk"
version = "0.2.1"
version = "0.2.2"
description = "SDK for interacting with Qualys APIs, across most modules the platform offers."
authors = ["0x41424142 <jake@jakelindsay.uk>", "0x4A616B65 <jake.lindsay@thermofisher.com>"]
maintainers = ["Jake Lindsay <jake@jakelindsay.uk>"]
Expand Down
2 changes: 1 addition & 1 deletion qualysdk/pm/vulnerabilities.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def _thread_worker(
raise QualysAPIError(response.text)
with LOCK:
responses.extend(
[PMVulnerability.from_dict(**qid) for qid in response.json()]
[PMVulnerability.from_dict(qid) for qid in response.json()]
)


Expand Down

0 comments on commit 3f3be46

Please sign in to comment.