Skip to content

Commit

Permalink
Merge pull request #73 from krazzbeluh/fix/file-path-is-required-not-…
Browse files Browse the repository at this point in the history
…null-for-sonarqube

Make mandatory field "filePath" not nullable for sonarqube output
  • Loading branch information
ajinabraham authored Dec 10, 2023
2 parents b8503e0 + 3a8d0db commit e43fbca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mobsfscan/formatters/sonarqube.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def get_sonarqube_issue(mobsfscan_issue):
}
location = {
'message': issue_data['description'],
'filePath': None,
'filePath': "",
'textRange': text_range,
}
primary_location = location
Expand Down

0 comments on commit e43fbca

Please sign in to comment.