Skip to content

Commit fe94d22

Browse files
⬆️ Bump ruff from 0.14.9 to 0.14.10 (#13938)
1 parent c0a717a commit fe94d22

5 files changed

Lines changed: 5 additions & 6 deletions

File tree

dojo/tools/checkmarx/parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def get_fields(self) -> list[str]:
4040
- component_version: Set to value within the "name" returned from the Checkmarx Scanner.
4141
"""
4242
return [
43-
"title"
43+
"title",
4444
"cwe",
4545
"active",
4646
"verified",

dojo/tools/snyk/parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def get_fields(self) -> list[str]:
4040
"severity_justification",
4141
"description",
4242
"mitigation",
43-
"component_name"
43+
"component_name",
4444
"component_version",
4545
"false_p",
4646
"duplicate",

dojo/tools/wiz/parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def parse_findings(self, test: Test, reader: csv.DictReader) -> list[Finding]:
5454
"Container Service",
5555
"Provider ID",
5656
"Risks",
57-
"Threats"
57+
"Threats",
5858
"Created At",
5959
"Status Changed At",
6060
"Updated At",

requirements-lint.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
ruff==0.14.9
1+
ruff==0.14.10

unittests/tools/test_api_bugcrowd_parser.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,5 +152,4 @@ def test_parse_file_with_broken_bug_url(self):
152152
parser = ApiBugcrowdParser()
153153
with self.assertLogs("dojo.tools.api_bugcrowd.parser", level="ERROR") as cm:
154154
parser.get_findings(testfile, Test())
155-
self.assertEqual(cm.output, ["ERROR:dojo.tools.api_bugcrowd.parser:"
156-
"Error parsing bugcrowd bug_url : curl https://example.com/"])
155+
self.assertEqual(cm.output, ["ERROR:dojo.tools.api_bugcrowd.parser:Error parsing bugcrowd bug_url : curl https://example.com/"])

0 commit comments

Comments
 (0)