Skip to content

Commit

Permalink
style: format code with Black and isort
Browse files Browse the repository at this point in the history
This commit fixes the style issues introduced in 74f6f33 according to the output
from Black and isort.

Details: #34
  • Loading branch information
deepsource-autofix[bot] authored Sep 12, 2024
1 parent 74f6f33 commit bab9b7b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion sarif-parser/src/sarif_parser/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""sarif-parser - Parse SARIF reports and covert them to DeepSource issues."""

from __future__ import annotations

import hashlib
Expand Down Expand Up @@ -179,7 +180,9 @@ def run_sarif_parser(
f"Could not find issue map at {issue_map_path} for analyzer."
)
# Add a log too
logger.warning("Could not find issue map at %s for analyzer.", issue_map_path)
logger.warning(
"Could not find issue map at %s for analyzer.", issue_map_path
)

# Run parser
deepsource_issues = []
Expand Down

0 comments on commit bab9b7b

Please sign in to comment.