Skip to content

Commit

Permalink
resolve #73 (#74)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidkhala authored Dec 31, 2024
1 parent 0625c56 commit f5e16bf
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions src/secret_scanning.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,6 @@ def write_repo_ss_list(secrets_list):
Outputs:
- CSV file of secret scanning alerts
"""
if len(secrets_list) == 0:
print("No secret scanning alerts found")
return
# Write secret scanning alerts to csv file
with open("secrets_list.csv", "w") as f:
writer = csv.writer(f)
Expand Down Expand Up @@ -100,9 +97,6 @@ def write_org_ss_list(secrets_list):
Outputs:
- CSV file of secret scanning alerts
"""
if len(secrets_list) == 0:
print("No secret scanning alerts found")
return
# Write secret scanning alerts to csv file
with open("secrets_list.csv", "w") as f:
writer = csv.writer(f)
Expand Down Expand Up @@ -182,9 +176,6 @@ def write_enterprise_ss_list(secrets_list):
Outputs:
- CSV file of secret scanning alerts
"""
if len(secrets_list) == 0:
print("No secret scanning alerts found")
return
# Write secret scanning alerts to csv file
with open("secrets_list.csv", "w") as f:
writer = csv.writer(f)
Expand Down

0 comments on commit f5e16bf

Please sign in to comment.