Skip to content

Commit d0b5219

Browse files
authored
move from csv to defusedcsv (#20)
1 parent ba948f9 commit d0b5219

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1+
defusedcsv==2.0.0
12
requests==2.28.1

src/code_scanning.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This holds all the things that do stuff for code scanning API
22

33
# Imports
4-
import csv
4+
from defusedcsv import csv
55
import requests
66

77

src/enterprise.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This holds all the logic for the various enterprise differences.
22

33
# Imports
4-
import csv
4+
from defusedcsv import csv
55
from time import sleep
66
import requests
77

src/secret_scanning.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This holds all the things that do stuff for secret scanning API
22

33
# Imports
4-
import csv
4+
from defusedcsv import csv
55
import requests
66

77

0 commit comments

Comments
 (0)