Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
achiar99 committed Oct 25, 2023
1 parent b0f6b22 commit 99e4fc9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions checkov/sast/report.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ def get_summary(self) -> Dict[str, Union[int, str]]:
base_summary[POLICY_COUNT] = policy_count

return base_summary

@abstractmethod
def get_formated_reachability_report(reachability_report_dicts: List[Dict[str, Any]]) -> Dict[str, Any]:
def get_formated_reachability_report(reachability_report_dict: Dict[str, Any]) -> Dict[str, Any]:
formated_report = {}
for lang, repos_data in reachability_report_dicts.items():
for lang, repos_data in reachability_report_dict.items():
formated_report[lang.value] = []
for repo_name, files_data in repos_data.items():
new_repo = {'Name': repo_name, 'Files': []}
Expand Down

0 comments on commit 99e4fc9

Please sign in to comment.