Skip to content

Commit

Permalink
Ruff: Add and fix D414
Browse files Browse the repository at this point in the history
  • Loading branch information
kiblik committed Jan 30, 2025
1 parent 420bf66 commit 13667d5
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 5 deletions.
2 changes: 0 additions & 2 deletions dojo/tools/qualys/csv_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,6 @@ def get_report_findings(csv_reader) -> [dict]:
Args:
csv_reader:
Returns:
"""
report_findings = []

Expand Down
2 changes: 0 additions & 2 deletions dojo/tools/whitehat_sentinel/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,6 @@ def _parse_solution(self, whitehat_sentinel_vuln_solution):
Args:
whitehat_sentinel_vuln_solution:
Returns:
"""
solution_html = whitehat_sentinel_vuln_solution["solution"]

Expand Down
2 changes: 1 addition & 1 deletion ruff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ select = [
"C90",
"I",
"N804", "N811", "N814", "N818",
"D2", "D3", "D402", "D403", "D405", "D406", "D407", "D408", "D409", "D410", "D411", "D412", "D413", "D416",
"D2", "D3", "D402", "D403", "D405", "D406", "D407", "D408", "D409", "D410", "D411", "D412", "D413", "D414", "D416",
"UP",
"YTT",
"ASYNC",
Expand Down

0 comments on commit 13667d5

Please sign in to comment.