File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
exasol/toolbox/util/dependencies Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -102,7 +102,7 @@ def reference_links(self) -> tuple[str, ...]:
102102 )
103103
104104 @property
105- def security_issue_entry (self ) -> dict [str , str | list [str ]]:
105+ def security_issue_entry (self ) -> dict [str , str | list [str ] | tuple [ str , ...] ]:
106106 return {
107107 "name" : self .package .name ,
108108 "version" : str (self .package .version ),
@@ -215,7 +215,7 @@ def load_from_pip_audit(cls, working_directory: Path) -> Vulnerabilities:
215215 return Vulnerabilities (vulnerabilities = vulnerabilities )
216216
217217 @property
218- def security_issue_dict (self ) -> list [dict [str , str | list [str ]]]:
218+ def security_issue_dict (self ) -> list [dict [str , str | list [str ] | tuple [ str , ...] ]]:
219219 return [
220220 vulnerability .security_issue_entry for vulnerability in self .vulnerabilities
221221 ]
You can’t perform that action at this time.
0 commit comments