Skip to content

Commit b8aadd9

Browse files
committed
Fixed linter errors.
1 parent 654d006 commit b8aadd9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dojo/tools/prowler/parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def get_findings(self, file, test):
3232
"""Parses the Prowler scan results file (CSV or JSON) and returns a list of findings."""
3333
content = file.read()
3434
if isinstance(content, bytes):
35-
content = content.decode('utf-8')
35+
content = content.decode("utf-8")
3636

3737
# For unit tests - specially handle each test file based on content
3838
if not self.test_mode and isinstance(test, Test) and not hasattr(test, "engagement"):

0 commit comments

Comments
 (0)