Skip to content

Commit

Permalink
appcheck-severity-determination-fix fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
dogboat committed Sep 16, 2024
1 parent 074fe21 commit b4a8ba7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ def set_endpoints(self, finding: Finding, item: Any) -> None:
# For severity (extracted from various cvss vectors)
#####
def parse_cvss_vector(self, value: str) -> Optional[str]:
# CVSS4 vector's don't parse with the handy-danty parse method :(
# CVSS4 vectors don't parse with the handy-danty parse method :(
try:
if (severity := cvss.CVSS4(value).severity) in Finding.SEVERITIES:
return severity
Expand Down

0 comments on commit b4a8ba7

Please sign in to comment.