Skip to content

Commit

Permalink
fix(sonarqube output): remove nullable state of the filePath mandator…
Browse files Browse the repository at this point in the history
…y field
  • Loading branch information
PaulLeclerc committed Dec 8, 2023
1 parent b8503e0 commit 3a8d0db
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 3a8d0db

Please sign in to comment.