Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ruff: Fix UP (after couple of merges) #9903

Merged
merged 1 commit into from
Apr 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dojo/tools/intsights/csv_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import io


class IntSightsCSVParser(object):
class IntSightsCSVParser:
def _parse_csv(self, csv_file) -> [dict]:
"""

Expand Down
2 changes: 1 addition & 1 deletion dojo/tools/intsights/json_handler.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import json


class IntSightsJSONParser(object):
class IntSightsJSONParser:
def _parse_json(self, json_file) -> [dict]:
"""
Parses entries from the JSON object into a list of alerts
Expand Down
Loading