Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion kt/ktlib/ciq_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -512,7 +512,7 @@ def CIQ_check_if_published_cve(vulns_repo, cve_id):
return True


def CIQ_find_matching_cve(vulns_repo, kernel_repo, hash_) -> str | None:
def CIQ_find_matching_cve(vulns_repo, kernel_repo, hash_) -> Optional[str]:
"""
Returns the CVE (i.e CVE-2023-526) if there is a corresponding CVE to that commit hash
and the CVE is published, not rejected.
Expand Down
Loading