Skip to content

Commit

Permalink
Solution v4
Browse files Browse the repository at this point in the history
  • Loading branch information
MrEgorLite committed Sep 25, 2024
1 parent 4f8763f commit 3a34049
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,5 @@ def format_single_linter_file(file_path: str, errors: list) -> dict:

def format_linter_report(linter_report: dict) -> list:

return ([format_single_linter_file(file_path, errors)
for file_path, errors in linter_report.items()])
pass
return [format_single_linter_file(file_path, errors)
for file_path, errors in linter_report.items()]

0 comments on commit 3a34049

Please sign in to comment.