Skip to content

Commit

Permalink
Linter E501 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
feeelin authored and dkrupp committed Oct 30, 2024
1 parent c77c339 commit e55b44f
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,9 @@ def get_reports(self, file_path: str) -> List[Report]:
errors="ignore") as report_file:
bugs = json.load(report_file)['warnings']
except (IOError, json.decoder.JSONDecodeError):
LOG.warning("Failed to parse the given analyzer result '%s'. Please "
"give a valid json file generated by PVS-Studio.",
LOG.warning("Failed to parse the given analyzer result '%s'. "
"Please give a valid json file "
"generated by PVS-Studio.",
file_path)
return reports

Expand Down

0 comments on commit e55b44f

Please sign in to comment.