diff --git a/app/main.py b/app/main.py index fde29ff7..0c585ddc 100644 --- a/app/main.py +++ b/app/main.py @@ -10,8 +10,7 @@ def format_linter_error(error: dict) -> dict: def format_single_linter_file(file_path: str, errors: list) -> dict: return { - "errors": - [format_linter_error(error) for error in errors], + "errors": [format_linter_error(error) for error in errors], "path": file_path, "status": "passed" if errors == [] else "failed" }