Skip to content

Commit

Permalink
Refactored results in report
Browse files Browse the repository at this point in the history
  • Loading branch information
Paulovgarcia committed Jul 21, 2023
1 parent 19ef834 commit fbb7bc6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion analyzers/Axur/axur_analyzer.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def run(self):
try:
response = requests.get(url, headers={'Authorization': f'Bearer {self.api_key}'})
response.raise_for_status()
self.report(response.json()["results"])
self.report(response.json())
except requests.HTTPError as http_err:
self.error('HTTP error occurred: {}'.format(http_err))
except Exception as err:
Expand Down

0 comments on commit fbb7bc6

Please # to comment.