Skip to content

Commit

Permalink
move from csv to defusedcsv (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
some-natalie committed Sep 7, 2022
1 parent ba948f9 commit d0b5219
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
defusedcsv==2.0.0
requests==2.28.1
2 changes: 1 addition & 1 deletion src/code_scanning.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This holds all the things that do stuff for code scanning API

# Imports
import csv
from defusedcsv import csv
import requests


Expand Down
2 changes: 1 addition & 1 deletion src/enterprise.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This holds all the logic for the various enterprise differences.

# Imports
import csv
from defusedcsv import csv
from time import sleep
import requests

Expand Down
2 changes: 1 addition & 1 deletion src/secret_scanning.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This holds all the things that do stuff for secret scanning API

# Imports
import csv
from defusedcsv import csv
import requests


Expand Down

0 comments on commit d0b5219

Please sign in to comment.