Skip to content

Commit

Permalink
Merge pull request #3777 from bbirman/static-analysis
Browse files Browse the repository at this point in the history
Fix for static analysis
  • Loading branch information
bbirman authored Nov 25, 2024
2 parents 8347820 + 61c48c2 commit 514a191
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/DangerFiles/StaticAnalysis.rb
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

if modified_file_names.include?(report_file_name) || added_file_names.include?(report_file_name)
issues = report['diagnostics']
print "File modified in PR: #{file}, has #{issue.count} issues.\n"
print "File modified in PR: #{file}, has #{issues.count} issues.\n"
for i in 0..issues.count-1
unless issues[i].nil?
message << "#{report_file_name} | #{issues[i]['type']} | #{issues[i]['category']} | #{issues[i]['description']} | #{issues[i]['location']['line']} | #{issues[i]['location']['col']}\n"
Expand Down

0 comments on commit 514a191

Please sign in to comment.