Skip to content

Commit 8a2a6d7

Browse files
committed
fix: model.VulnerabilityAnalysis\s comparisson
Signed-off-by: Jan Kowalleck <[email protected]>
1 parent 4478cac commit 8a2a6d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cyclonedx/model/vulnerability.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ def detail(self, detail: Optional[str]) -> None:
329329

330330
def __comparable_tuple(self) -> _ComparableTuple:
331331
return _ComparableTuple((
332-
self.state, self.justification, tuple(self.responses), self.detail
332+
self.state, self.justification, _ComparableTuple(self.responses), self.detail
333333
))
334334

335335
def __eq__(self, other: object) -> bool:

0 commit comments

Comments
 (0)